umbrello 2.34.70-5524f40e1
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
umloperationlist.h
Go to the documentation of this file.
1/*
2 SPDX-License-Identifier: GPL-2.0-or-later
3 SPDX-FileCopyrightText: 2003-2007 Umbrello UML Modeller Authors <umbrello-devel@kde.org>
4*/
5
6#ifndef UMLOPERATIONLIST_H
7#define UMLOPERATIONLIST_H
8
9#include <qlist.h>
10
11// forward declaration
12class UMLOperation;
13
14typedef QList<UMLOperation*> UMLOperationList;
15typedef QListIterator<UMLOperation*> UMLOperationListIt;
16
17#endif
Definition: operation.h:20
QList< UMLOperation * > UMLOperationList
Definition: umloperationlist.h:12
QListIterator< UMLOperation * > UMLOperationListIt
Definition: umloperationlist.h:15