umbrello  2.39.2
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
cppmakecodedocument.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-2021 Umbrello UML Modeller Authors <umbrello-devel@kde.org>
6 */
7 
8 #ifndef CPPMAKECODEDOCUMENT_H
9 #define CPPMAKECODEDOCUMENT_H
10 
11 #include "codedocument.h"
12 
13 #include <QString>
14 
20 {
21  Q_OBJECT
22 public:
23 
24  static const char * DOCUMENT_ID_VALUE;
25 
30 
34  virtual ~CPPMakefileCodeDocument ();
35 
39  QString toString () const;
40 
41  QString getPath () const;
42 
43  void updateContent();
44 
45 protected:
46 
47 private:
48 
49 };
50 
51 #endif // CPPMAKECODEDOCUMENT_H
Definition: cppmakecodedocument.h:20
static const char * DOCUMENT_ID_VALUE
Definition: cppmakecodedocument.h:24
CPPMakefileCodeDocument()
Definition: cppmakecodedocument.cpp:14
QString toString() const
Definition: cppmakecodedocument.cpp:35
void updateContent()
Definition: cppmakecodedocument.cpp:27
virtual ~CPPMakefileCodeDocument()
Definition: cppmakecodedocument.cpp:21
QString getPath() const
Definition: cppmakecodedocument.cpp:41
Definition: codedocument.h:30