umbrello  2.31.0
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
associationwidgetlist.h
Go to the documentation of this file.
1 /***************************************************************************
2  * This program is free software; you can redistribute it and/or modify *
3  * it under the terms of the GNU General Public License as published by *
4  * the Free Software Foundation; either version 2 of the License, or *
5  * (at your option) any later version. *
6  * *
7  copyright : (C) 2003 by Oliver Kellogg
8  email : okellogg@users.sourceforge.net
9  Bugs and comments to umbrello-devel@kde.org or https://bugs.kde.org
10  ***************************************************************************/
11 
12 #ifndef ASSOCIATIONWIDGETLIST_H
13 #define ASSOCIATIONWIDGETLIST_H
14 
15 #include <QList>
16 #include <QPointer>
17 
18 // forward declarations
20 
21 typedef QList<QPointer<AssociationWidget>> AssociationWidgetList;
22 typedef QListIterator<QPointer<AssociationWidget>> AssociationWidgetListIt;
23 
24 #endif
AssociationWidget
This class represents an association inside a diagram. Bugs and comments to umbrello-devel@kde....
Definition: associationwidget.h:51
AssociationWidgetListIt
QListIterator< QPointer< AssociationWidget > > AssociationWidgetListIt
Definition: associationwidgetlist.h:22
AssociationWidgetList
QList< QPointer< AssociationWidget > > AssociationWidgetList
Definition: associationwidgetlist.h:19