umbrello 2.34.70-5524f40e1
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
umlentityconstraintlist.h
Go to the documentation of this file.
1/*
2 SPDX-License-Identifier: GPL-2.0-or-later
3 SPDX-FileCopyrightText: 2004-2021 Umbrello UML Modeller Authors <umbrello-devel@kde.org>
4*/
5
6#ifndef UMLENTITYCONSTRAINTLIST_H
7#define UMLENTITYCONSTRAINTLIST_H
8
9#include <qlist.h>
10
11// forward declaration
13
14
15typedef QListIterator<UMLEntityConstraint*> UMLEntityConstraintListIt;
16
21class UMLEntityConstraintList : public QList<UMLEntityConstraint*>
22{
23public:
24
26
28
29 virtual void copyInto (UMLEntityConstraintList* rhs) const;
30
31 virtual UMLEntityConstraintList* clone() const;
32};
33
34
35#endif
Definition: umlentityconstraintlist.h:22
virtual void copyInto(UMLEntityConstraintList *rhs) const
Definition: umlentityconstraintlist.cpp:24
virtual UMLEntityConstraintList * clone() const
Definition: umlentityconstraintlist.cpp:45
virtual ~UMLEntityConstraintList()
Definition: umlentityconstraintlist.cpp:16
UMLEntityConstraintList()
Definition: umlentityconstraintlist.cpp:12
Sets up entity constraint information.
Definition: entityconstraint.h:22
QListIterator< UMLEntityConstraint * > UMLEntityConstraintListIt
Definition: umlentityconstraintlist.h:12