umbrello  2.32.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  * 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
cppcodegenerator.h
CPPMakefileCodeDocument::updateContent
void updateContent()
Definition: cppmakecodedocument.cpp:31
CPPMakefileCodeDocument::getPath
QString getPath()
Definition: cppmakecodedocument.cpp:45
CodeDocument::setFileName
void setFileName(const QString &new_var)
Definition: codedocument.cpp:53
CodeDocument::setFileExtension
void setFileExtension(const QString &new_var)
Definition: codedocument.cpp:72
CPPMakefileCodeDocument::CPPMakefileCodeDocument
CPPMakefileCodeDocument()
Definition: cppmakecodedocument.cpp:18
CodeDocument
Definition: codedocument.h:33
CPPMakefileCodeDocument::toString
QString toString()
Definition: cppmakecodedocument.cpp:39
CPPMakefileCodeDocument
Definition: cppmakecodedocument.h:24
CodeDocument::getPackage
QString getPackage() const
Definition: codedocument.cpp:123
codedocument.h
CPPMakefileCodeDocument::DOCUMENT_ID_VALUE
static const char * DOCUMENT_ID_VALUE
Definition: cppmakecodedocument.h:28
CodeDocument::setID
void setID(const QString &new_id)
Definition: codedocument.cpp:134
CPPMakefileCodeDocument::~CPPMakefileCodeDocument
virtual ~CPPMakefileCodeDocument()
Definition: cppmakecodedocument.cpp:25