diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-07-18 19:47:03 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-07-18 19:47:03 (GMT) |
commit | 46361b7017fbbbc5f560eea54aac2be86abaf90e (patch) | |
tree | 6409d19be4f75548825a856ab0a7bd9921ad4996 /src/docparser.h | |
parent | e6e861e83b8a05b894b84775f0fc115614d6f229 (diff) | |
download | Doxygen-46361b7017fbbbc5f560eea54aac2be86abaf90e.zip Doxygen-46361b7017fbbbc5f560eea54aac2be86abaf90e.tar.gz Doxygen-46361b7017fbbbc5f560eea54aac2be86abaf90e.tar.bz2 |
Release-1.3.7-20040718
Diffstat (limited to 'src/docparser.h')
-rw-r--r-- | src/docparser.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/docparser.h b/src/docparser.h index 1b75451..84fe830 100644 --- a/src/docparser.h +++ b/src/docparser.h @@ -357,9 +357,7 @@ class DocVerbatim : public DocNode enum Type { Code, HtmlOnly, ManOnly, LatexOnly, XmlOnly, Verbatim, Dot }; DocVerbatim(DocNode *parent,const QString &context, const QString &text, Type t,bool isExample, - const QString &exampleFile) : - m_parent(parent), m_context(context), m_text(text), m_type(t), - m_isExample(isExample), m_exampleFile(exampleFile) {} + const QString &exampleFile); Kind kind() const { return Kind_Verbatim; } Type type() const { return m_type; } QString text() const { return m_text; } @@ -368,6 +366,7 @@ class DocVerbatim : public DocNode void accept(DocVisitor *v) { v->visit(this); } bool isExample() const { return m_isExample; } QString exampleFile() const { return m_exampleFile; } + QString relPath() const { return m_relPath; } private: DocNode *m_parent; @@ -376,6 +375,7 @@ class DocVerbatim : public DocNode Type m_type; bool m_isExample; QString m_exampleFile; + QString m_relPath; }; @@ -455,6 +455,7 @@ class DocFormula : public DocNode Kind kind() const { return Kind_Formula; } QString name() const { return m_name; } QString text() const { return m_text; } + QString relPath() const { return m_relPath; } int id() const { return m_id; } DocNode *parent() const { return m_parent; } void accept(DocVisitor *v) { v->visit(this); } @@ -463,6 +464,7 @@ class DocFormula : public DocNode DocNode *m_parent; QString m_name; QString m_text; + QString m_relPath; int m_id; }; |