umbrello 2.38.4
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
12class UMLListViewItem;
13
14typedef QList<UMLListViewItem*> UMLListViewItemList;
15typedef 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:14