diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2007-03-15 10:14:23 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2007-03-15 10:14:23 (GMT) |
commit | 97a3911e2682bfebeebbb8999c9e3844c414c3e0 (patch) | |
tree | 5300b179faf00eea740dda6ee3be5343c70b1c79 /src/docparser.h | |
parent | f7f03d9491454ddc9b855b8637d482df6bd622c2 (diff) | |
download | Doxygen-97a3911e2682bfebeebbb8999c9e3844c414c3e0.zip Doxygen-97a3911e2682bfebeebbb8999c9e3844c414c3e0.tar.gz Doxygen-97a3911e2682bfebeebbb8999c9e3844c414c3e0.tar.bz2 |
Release-1.5.1-20070315
Diffstat (limited to 'src/docparser.h')
-rw-r--r-- | src/docparser.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/docparser.h b/src/docparser.h index 7f074e4..7d09ac5 100644 --- a/src/docparser.h +++ b/src/docparser.h @@ -362,7 +362,7 @@ class DocWhiteSpace : public DocNode class DocVerbatim : public DocNode { public: - enum Type { Code, HtmlOnly, ManOnly, LatexOnly, XmlOnly, Verbatim, Dot }; + enum Type { Code, HtmlOnly, ManOnly, LatexOnly, XmlOnly, Verbatim, Dot, Msc }; DocVerbatim(DocNode *parent,const QString &context, const QString &text, Type t,bool isExample, const QString &exampleFile); @@ -374,7 +374,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; } + QString relPath() const { return m_relPath; } private: DocNode *m_parent; |