umbrello  2.30.80
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
TextBlock::getWriteOutText
bool getWriteOutText() const
Definition: textblock.cpp:141
XMLCodeComment::~XMLCodeComment
virtual ~XMLCodeComment()
Definition: xmlcodecomment.cpp:19
XMLCodeComment::toString
QString toString() const
Definition: xmlcodecomment.cpp:23
CodeComment
Definition: codecomment.h:23
XMLCodeComment
Definition: xmlcodecomment.h:25
xmlcodecomment.h
TextBlock::getIndentationString
QString getIndentationString(int level=0) const
Definition: textblock.cpp:193
CodeDocument
Definition: codedocument.h:32
TextBlock::formatMultiLineText
static QString formatMultiLineText(const QString &work, const QString &linePrefix, const QString &breakStr, bool addBreak=true, bool lastLineHasBreak=true)
Definition: textblock.cpp:288
TextBlock::getNewLineEndingChars
static QString getNewLineEndingChars()
Definition: textblock.cpp:172
TextBlock::getText
QString getText() const
Definition: textblock.cpp:99
codecomment.h
XMLCodeComment::XMLCodeComment
XMLCodeComment(CodeDocument *doc, const QString &text=QString())
Definition: xmlcodecomment.cpp:14