diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2012-08-11 13:06:22 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2012-08-11 13:06:22 (GMT) |
commit | 34cc61be7d0f6dafcaaa5fcdaa98ce4d31014634 (patch) | |
tree | ad481e345a35820f0142bb774556afc6de0d00fa /src/htmldocvisitor.h | |
parent | 3583a7c0bea47665a06d14a64b62376eee21c528 (diff) | |
download | Doxygen-34cc61be7d0f6dafcaaa5fcdaa98ce4d31014634.zip Doxygen-34cc61be7d0f6dafcaaa5fcdaa98ce4d31014634.tar.gz Doxygen-34cc61be7d0f6dafcaaa5fcdaa98ce4d31014634.tar.bz2 |
Release-1.8.2
Diffstat (limited to 'src/htmldocvisitor.h')
-rw-r--r-- | src/htmldocvisitor.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/htmldocvisitor.h b/src/htmldocvisitor.h index 9a22a64..dbf5e21 100644 --- a/src/htmldocvisitor.h +++ b/src/htmldocvisitor.h @@ -23,6 +23,8 @@ #include <qstack.h> #include <qcstring.h> +class Definition; +class MemberDef; class DocNode; class FTextStream; class CodeOutputInterface; @@ -31,7 +33,7 @@ class CodeOutputInterface; class HtmlDocVisitor : public DocVisitor { public: - HtmlDocVisitor(FTextStream &t,CodeOutputInterface &ci,const char *langExt); + HtmlDocVisitor(FTextStream &t,CodeOutputInterface &ci,Definition *ctx,MemberDef *md); //-------------------------------------- // visitor functions for leaf nodes @@ -160,6 +162,8 @@ class HtmlDocVisitor : public DocVisitor bool m_insidePre; bool m_hide; QStack<bool> m_enabled; + Definition *m_ctx; + MemberDef *m_md; QCString m_langExt; }; |