umbrello  2.31.2
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
umlwidgetlist.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) 2001 Gustavo Madrigal <gmadrigal@nextphere.com> *
8  * copyright (C) 2004-2020 *
9  * Umbrello UML Modeller Authors <umbrello-devel@kde.org> *
10  ***************************************************************************/
11 
12 #ifndef UMLWIDGETLIST_H
13 #define UMLWIDGETLIST_H
14 
15 #include <QList>
16 #include <QPointer>
17 class UMLWidget;
18 
19 typedef QList<QPointer<UMLWidget>> UMLWidgetList;
20 typedef QListIterator<QPointer<UMLWidget>> UMLWidgetListIt;
21 
22 #endif
UMLWidget
The base class for graphical UML objects.
Definition: umlwidget.h:41
UMLWidgetListIt
QListIterator< QPointer< UMLWidget > > UMLWidgetListIt
Definition: umlwidgetlist.h:20
UMLWidgetList
QList< QPointer< UMLWidget > > UMLWidgetList
Definition: umlwidgetlist.h:17