umbrello  2.32.0
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
umlpackagelist.h
Go to the documentation of this file.
1 /***************************************************************************
2  * *
3  * This program is free software; you can redistribute it and/or modify *
4  * it under the terms of the GNU General Public License as published by *
5  * the Free Software Foundation; either version 2 of the License, or *
6  * (at your option) any later version. *
7  * *
8  * copyright (C) 2003-2007 *
9  * Umbrello UML Modeller Authors <umbrello-devel@kde.org> *
10  ***************************************************************************/
11 
12 #ifndef UMLPACKAGELIST_H
13 #define UMLPACKAGELIST_H
14 
15 #include <qlist.h>
16 
17 class UMLPackage;
18 
19 typedef QList<UMLPackage*> UMLPackageList;
20 typedef QListIterator<UMLPackage*> UMLPackageListIt;
21 
22 #endif
Non-graphical information for a Package.
Definition: package.h:32
QListIterator< UMLPackage * > UMLPackageListIt
Definition: umlpackagelist.h:20
QList< UMLPackage * > UMLPackageList
Definition: umlpackagelist.h:17