diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2010-05-07 19:37:33 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2010-05-07 19:37:33 (GMT) |
commit | a3b06c4fd310fdeda48a4730139cee09b5302072 (patch) | |
tree | 58636054e8f52c5851109b908053cc4da26b060a /src/htmldocvisitor.h | |
parent | 368c93a05bf38e440dba3f033f6e2e1cbeb2f379 (diff) | |
download | Doxygen-a3b06c4fd310fdeda48a4730139cee09b5302072.zip Doxygen-a3b06c4fd310fdeda48a4730139cee09b5302072.tar.gz Doxygen-a3b06c4fd310fdeda48a4730139cee09b5302072.tar.bz2 |
Release-1.6.3-20100507
Diffstat (limited to 'src/htmldocvisitor.h')
-rw-r--r-- | src/htmldocvisitor.h | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/src/htmldocvisitor.h b/src/htmldocvisitor.h index 586ef4f..b31247f 100644 --- a/src/htmldocvisitor.h +++ b/src/htmldocvisitor.h @@ -24,15 +24,14 @@ #include <qcstring.h> class DocNode; -class QTextStream; +class FTextStream; class CodeOutputInterface; -class QString; /*! @brief Concrete visitor implementation for HTML output. */ class HtmlDocVisitor : public DocVisitor { public: - HtmlDocVisitor(QTextStream &t,CodeOutputInterface &ci,const char *langExt); + HtmlDocVisitor(FTextStream &t,CodeOutputInterface &ci,const char *langExt); //-------------------------------------- // visitor functions for leaf nodes @@ -133,12 +132,12 @@ class HtmlDocVisitor : public DocVisitor void filter(const char *str); void filterQuotedCdataAttr(const char* str); - void startLink(const QString &ref,const QString &file, - const QString &relPath,const QString &anchor, - const QString &tooltip = QString::null); + void startLink(const QCString &ref,const QCString &file, + const QCString &relPath,const QCString &anchor, + const QCString &tooltip = ""); void endLink(); - void writeDotFile(const QString &fileName,const QString &relPath,const QString &context); - void writeMscFile(const QString &fileName,const QString &relPath,const QString &context); + void writeDotFile(const QCString &fileName,const QCString &relPath,const QCString &context); + void writeMscFile(const QCString &fileName,const QCString &relPath,const QCString &context); void pushEnabled(); void popEnabled(); @@ -150,7 +149,7 @@ class HtmlDocVisitor : public DocVisitor // state variables //-------------------------------------- - QTextStream &m_t; + FTextStream &m_t; CodeOutputInterface &m_ci; bool m_insidePre; bool m_hide; |