umbrello  2.31.70
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
xmlcodecomment.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 XMLCODECOMMENT_H
13 #define XMLCODECOMMENT_H
14 
15 #include "codecomment.h"
16 
17 #include <QString>
18 
19 class CodeDocument;
20 
25 class XMLCodeComment: virtual public CodeComment
26 {
27 public:
28 
32  explicit XMLCodeComment (CodeDocument * doc, const QString & text = QString());
33 
37  virtual ~XMLCodeComment();
38 
42  QString toString () const;
43 
44 protected:
45 
46 private:
47 
48 };
49 
50 #endif // XMLCODECOMMENT_H
Definition: xmlcodecomment.h:25
QString toString() const
Definition: xmlcodecomment.cpp:23
XMLCodeComment(CodeDocument *doc, const QString &text=QString())
Definition: xmlcodecomment.cpp:14
Definition: codedocument.h:32
virtual ~XMLCodeComment()
Definition: xmlcodecomment.cpp:19
Definition: codecomment.h:23