umbrello 2.34.70-5524f40e1
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
14class UMLView;
15
16typedef QList<QPointer<UMLView>> UMLViewList;
17typedef 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