umbrello  2.39.2
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
cppsourcecodeaccessormethod.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 CPPSOURCECODEACCESSORMETHOD_H
9 #define CPPSOURCECODEACCESSORMETHOD_H
10 
11 #include "codeaccessormethod.h"
12 
13 #include <QString>
14 
15 class CodeClassField;
16 
18 {
19  Q_OBJECT
20 public:
21 
26 
31 
35  void update();
36 
37  virtual void updateMethodDeclaration();
38  virtual void updateContent();
39 
40 private:
41 
42 };
43 
44 #endif // CPPSOURCECODEACCESSORMETHOD_H
Definition: cppsourcecodeaccessormethod.h:18
virtual void updateMethodDeclaration()
Definition: cppsourcecodeaccessormethod.cpp:92
CPPSourceCodeAccessorMethod(CodeClassField *field, CodeAccessorMethod::AccessorType type)
Definition: cppsourcecodeaccessormethod.cpp:23
virtual ~CPPSourceCodeAccessorMethod()
Definition: cppsourcecodeaccessormethod.cpp:36
virtual void updateContent()
Definition: cppsourcecodeaccessormethod.cpp:41
void update()
Definition: cppsourcecodeaccessormethod.cpp:30
Definition: codeaccessormethod.h:18
AccessorType
Definition: codeaccessormethod.h:29
Definition: codeclassfield.h:26