umbrello  2.39.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  SPDX-FileCopyrightText: 2001 Gustavo Madrigal < gmadrigal@nextphere.com>
3  SPDX-License-Identifier: GPL-2.0-or-later
4  Bugs and comments to umbrello-devel@kde.org or https://bugs.kde.org
5 */
6 
7 #ifndef UMLLISTVIEWITEMLIST_H
8 #define UMLLISTVIEWITEMLIST_H
9 
10 #include <QList>
11 
12 class UMLListViewItem;
13 
14 typedef QList<UMLListViewItem*> UMLListViewItemList;
15 typedef QListIterator<UMLListViewItem*> UMLListViewItemListIt;
16 
17 #endif
Items used by UMLListView.
Definition: umllistviewitem.h:36
QListIterator< UMLListViewItem * > UMLListViewItemListIt
Definition: umllistviewitemlist.h:15
QList< UMLListViewItem * > UMLListViewItemList
Definition: umllistviewitemlist.h:12