umbrello  2.39.2
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  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 UMLVIEWLIST_H
8 #define UMLVIEWLIST_H
9 
10 //#include "umlview.h"
11 #include <QList>
12 #include <QPointer>
13 
14 class UMLView;
15 
16 typedef QList<QPointer<UMLView>> UMLViewList;
17 typedef QListIterator<QPointer<UMLView>> UMLViewListIt;
18 
19 #endif
Definition: umlview.h:30
QListIterator< QPointer< UMLView > > UMLViewListIt
Definition: umlviewlist.h:17
QList< QPointer< UMLView > > UMLViewList
Definition: umlviewlist.h:14