umbrello 2.34.70-5524f40e1
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
15class CodeDocument;
16
21class XMLCodeComment: virtual public CodeComment
22{
23public:
24
28 explicit XMLCodeComment (CodeDocument * doc, const QString & text = QString());
29
33 virtual ~XMLCodeComment();
34
38 QString toString () const;
39
40protected:
41
42private:
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