umbrello  2.39.2
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
cppcodeclassfield.h
Go to the documentation of this file.
1 /*
2  SPDX-License-Identifier: GPL-2.0-or-later
3 
4  SPDX-FileCopyrightText: 2003 Brian Thomas <thomas@mail630.gsfc.nasa.gov>
5  SPDX-FileCopyrightText: 2004-2020 Umbrello UML Modeller Authors <umbrello-devel@kde.org>
6 */
7 
8 #ifndef CPPCODECLASSFIELD_H
9 #define CPPCODECLASSFIELD_H
10 
11 #include "codeclassfield.h"
12 
13 #include <QString>
14 
16 
18 {
19  Q_OBJECT
20 public:
21 
25  CPPCodeClassField (ClassifierCodeDocument * parentDoc, UMLRole * role);
27 
31  virtual ~CPPCodeClassField ();
32 
33  QString getFieldType();
34  QString getFieldName();
35  QString getInitialValue();
36 
41  QString getListFieldClassName();
42 
43 
44 protected:
45 
46 private:
47 
48 };
49 
50 #endif // CPPCODECLASSFIELD_H
Definition: cppcodeclassfield.h:18
QString getFieldName()
Definition: cppcodeclassfield.cpp:35
CPPCodeClassField(ClassifierCodeDocument *parentDoc, UMLRole *role)
Definition: cppcodeclassfield.cpp:21
virtual ~CPPCodeClassField()
Definition: cppcodeclassfield.cpp:31
QString getInitialValue()
Definition: cppcodeclassfield.cpp:61
QString getListFieldClassName()
Definition: cppcodeclassfield.cpp:54
QString getFieldType()
Definition: classifiercodedocument.h:29
Definition: codeclassfield.h:26
Sets up attribute information.
Definition: attribute.h:23
Definition: umlrole.h:20