umbrello  2.32.0
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  * This program is free software; you can redistribute it and/or modify *
3  * it under the terms of the GNU General Public License as published by *
4  * the Free Software Foundation; either version 2 of the License, or *
5  * (at your option) any later version. *
6  * *
7  * copyright (C) 2003 Brian Thomas <thomas@mail630.gsfc.nasa.gov> *
8  * copyright (C) 2004-2020 *
9  * Umbrello UML Modeller Authors <umbrello-devel@kde.org> *
10  ***************************************************************************/
11 
12 #ifndef CPPMAKECODEDOCUMENT_H
13 #define CPPMAKECODEDOCUMENT_H
14 
15 #include "codedocument.h"
16 
17 #include <QString>
18 
24 {
25  Q_OBJECT
26 public:
27 
28  static const char * DOCUMENT_ID_VALUE;
29 
34 
38  virtual ~CPPMakefileCodeDocument ();
39 
43  QString toString ();
44 
45  QString getPath ();
46 
47  void updateContent();
48 
49 protected:
50 
51 private:
52 
53 };
54 
55 #endif // CPPMAKECODEDOCUMENT_H
Definition: cppmakecodedocument.h:24
QString toString()
Definition: cppmakecodedocument.cpp:39
QString getPath()
Definition: cppmakecodedocument.cpp:45
static const char * DOCUMENT_ID_VALUE
Definition: cppmakecodedocument.h:28
CPPMakefileCodeDocument()
Definition: cppmakecodedocument.cpp:18
void updateContent()
Definition: cppmakecodedocument.cpp:31
virtual ~CPPMakefileCodeDocument()
Definition: cppmakecodedocument.cpp:25
Definition: codedocument.h:34