umbrello  2.31.2
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
umllistviewitemlist.h
Go to the documentation of this file.
1 /***************************************************************************
2  umllistviewitemlist.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 UMLLISTVIEWITEMLIST_H
20 #define UMLLISTVIEWITEMLIST_H
21 
22 #include <QList>
23 
24 class UMLListViewItem;
25 
26 typedef QList<UMLListViewItem*> UMLListViewItemList;
27 typedef QListIterator<UMLListViewItem*> UMLListViewItemListIt;
28 
29 #endif
UMLListViewItem
Items used by UMLListView.
Definition: umllistviewitem.h:40
UMLListViewItemListIt
QListIterator< UMLListViewItem * > UMLListViewItemListIt
Definition: umllistviewitemlist.h:27
UMLListViewItemList
QList< UMLListViewItem * > UMLListViewItemList
Definition: umllistviewitemlist.h:24