umbrello  2.39.2
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  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 XMLCODECOMMENT_H
9 #define XMLCODECOMMENT_H
10 
11 #include "codecomment.h"
12 
13 #include <QString>
14 
15 class CodeDocument;
16 
21 class XMLCodeComment: virtual public CodeComment
22 {
23 public:
24 
28  explicit XMLCodeComment (CodeDocument * doc, const QString & text = QString());
29 
33  virtual ~XMLCodeComment();
34 
38  QString toString () const;
39 
40 protected:
41 
42 private:
43 
44 };
45 
46 #endif // XMLCODECOMMENT_H
Definition: codecomment.h:20
Definition: codedocument.h:30
Definition: xmlcodecomment.h:22
QString toString() const
Definition: xmlcodecomment.cpp:19
virtual ~XMLCodeComment()
Definition: xmlcodecomment.cpp:15
XMLCodeComment(CodeDocument *doc, const QString &text=QString())
Definition: xmlcodecomment.cpp:10