diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-08-24 20:00:14 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-08-24 20:00:14 (GMT) |
commit | 4b77f4fc83a7954a741c1b35ec50e918a2786559 (patch) | |
tree | acf5ce8ed64ee56e5f7eec664f2f00260d068e9c /src/docparser.h | |
parent | bb18b811e8f1a4a939eadf28d12bc5f99dd74b82 (diff) | |
download | Doxygen-4b77f4fc83a7954a741c1b35ec50e918a2786559.zip Doxygen-4b77f4fc83a7954a741c1b35ec50e918a2786559.tar.gz Doxygen-4b77f4fc83a7954a741c1b35ec50e918a2786559.tar.bz2 |
Release-1.3.8-20040824
Diffstat (limited to 'src/docparser.h')
-rw-r--r-- | src/docparser.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/docparser.h b/src/docparser.h index b5467c2..4b9b044 100644 --- a/src/docparser.h +++ b/src/docparser.h @@ -507,12 +507,15 @@ class DocCopy : public CompAccept<DocCopy>, public DocNode class DocAutoList : public CompAccept<DocAutoList>, public DocNode { public: - DocAutoList(DocNode *parent,int indent,bool isEnumList) : - m_parent(parent), m_indent(indent), m_isEnumList(isEnumList) {} + DocAutoList(DocNode *parent,int indent,bool isEnumList, + int depth) : + m_parent(parent), m_indent(indent), m_isEnumList(isEnumList), + m_depth(depth) {} Kind kind() const { return Kind_AutoList; } bool isEnumList() const { return m_isEnumList; } int indent() const { return m_indent; } DocNode *parent() const { return m_parent; } + int depth() const { return m_depth; } void accept(DocVisitor *v) { CompAccept<DocAutoList>::accept(this,v); } int parse(); @@ -520,6 +523,7 @@ class DocAutoList : public CompAccept<DocAutoList>, public DocNode DocNode *m_parent; int m_indent; bool m_isEnumList; + int m_depth; }; |