diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-03-29 18:36:56 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-03-29 18:36:56 (GMT) |
commit | 842c816a31537e32cec376c85c0a4363f74d7a54 (patch) | |
tree | 03d6b185e875e40273478b0d1dd504345aec00ac /src/docparser.h | |
parent | a7c7f36ea2a67969bf3916c7600fe487e34438c0 (diff) | |
download | Doxygen-842c816a31537e32cec376c85c0a4363f74d7a54.zip Doxygen-842c816a31537e32cec376c85c0a4363f74d7a54.tar.gz Doxygen-842c816a31537e32cec376c85c0a4363f74d7a54.tar.bz2 |
Added optional [block] option to \htmlonly
Diffstat (limited to 'src/docparser.h')
-rw-r--r-- | src/docparser.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/docparser.h b/src/docparser.h index a6d9fc0..b37a4a5 100644 --- a/src/docparser.h +++ b/src/docparser.h @@ -436,7 +436,7 @@ class DocVerbatim : public DocNode enum Type { Code, HtmlOnly, ManOnly, LatexOnly, RtfOnly, XmlOnly, Verbatim, Dot, Msc, DocbookOnly }; DocVerbatim(DocNode *parent,const QCString &context, const QCString &text, Type t,bool isExample, - const QCString &exampleFile,const QCString &lang=QCString()); + const QCString &exampleFile,bool isBlock=FALSE,const QCString &lang=QCString()); Kind kind() const { return Kind_Verbatim; } Type type() const { return m_type; } QCString text() const { return m_text; } @@ -446,6 +446,7 @@ class DocVerbatim : public DocNode QCString exampleFile() const { return m_exampleFile; } QCString relPath() const { return m_relPath; } QCString language() const { return m_lang; } + bool isBlock() const { return m_isBlock; } private: QCString m_context; @@ -455,6 +456,7 @@ class DocVerbatim : public DocNode QCString m_exampleFile; QCString m_relPath; QCString m_lang; + bool m_isBlock; }; |