umbrello  2.32.3
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
umlviewlist.h
Go to the documentation of this file.
1 /***************************************************************************
2  umlviewlist.h - description
3  -------------------
4  begin : Sat Dec 29 2001
5  copyright : (C) 2001 by Gustavo Madrigal
6  email : gmadrigal@nextphere.com
7  Bugs and comments to umbrello-devel@kde.org or https://bugs.kde.org
8  ***************************************************************************/
9 
10 /***************************************************************************
11  * *
12  * This program is free software; you can redistribute it and/or modify *
13  * it under the terms of the GNU General Public License as published by *
14  * the Free Software Foundation; either version 2 of the License, or *
15  * (at your option) any later version. *
16  * *
17  ***************************************************************************/
18 
19 #ifndef UMLVIEWLIST_H
20 #define UMLVIEWLIST_H
21 
22 //#include "umlview.h"
23 #include <QList>
24 #include <QPointer>
25 
26 class UMLView;
27 
28 typedef QList<QPointer<UMLView>> UMLViewList;
29 typedef QListIterator<QPointer<UMLView>> UMLViewListIt;
30 
31 #endif
Definition: umlview.h:35
QListIterator< QPointer< UMLView > > UMLViewListIt
Definition: umlviewlist.h:29
QList< QPointer< UMLView > > UMLViewList
Definition: umlviewlist.h:26