summaryrefslogtreecommitdiffstats
path: root/src/docparser.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2013-09-04 14:34:37 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2013-09-24 19:01:24 (GMT)
commit3b9f4d9cee85686861070c68a53c9db369589a6e (patch)
tree1f196c204b3da949f1d1348e59760e4c3be6a77e /src/docparser.h
parentb4e5125a6208c783445ffb66d1f683d17c8c7cd1 (diff)
downloadDoxygen-3b9f4d9cee85686861070c68a53c9db369589a6e.zip
Doxygen-3b9f4d9cee85686861070c68a53c9db369589a6e.tar.gz
Doxygen-3b9f4d9cee85686861070c68a53c9db369589a6e.tar.bz2
Added @parblock and @endparblock commands
Diffstat (limited to 'src/docparser.h')
-rw-r--r--src/docparser.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/docparser.h b/src/docparser.h
index f8cc718..6012db2 100644
--- a/src/docparser.h
+++ b/src/docparser.h
@@ -130,7 +130,8 @@ class DocNode
Kind_Text = 47,
Kind_MscFile = 48,
Kind_HtmlBlockQuote = 49,
- Kind_VhdlFlow = 50
+ Kind_VhdlFlow = 50,
+ Kind_ParBlock = 51
};
/*! Creates a new node */
DocNode() : m_parent(0), m_insidePre(FALSE) {}
@@ -900,6 +901,19 @@ class DocInternal : public CompAccept<DocInternal>, public DocNode
private:
};
+/** Node representing an block of paragraphs */
+class DocParBlock : public CompAccept<DocParBlock>, public DocNode
+{
+ public:
+ DocParBlock(DocNode *parent) { m_parent = parent; }
+ int parse();
+ Kind kind() const { return Kind_ParBlock; }
+ void accept(DocVisitor *v) { CompAccept<DocParBlock>::accept(this,v); }
+
+ private:
+};
+
+
/** Node representing a simple list */
class DocSimpleList : public CompAccept<DocSimpleList>, public DocNode
{