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/latexdocvisitor.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/latexdocvisitor.h')
-rw-r--r-- | src/latexdocvisitor.h | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/src/latexdocvisitor.h b/src/latexdocvisitor.h index 94037df..7b7a4d9 100644 --- a/src/latexdocvisitor.h +++ b/src/latexdocvisitor.h @@ -24,15 +24,14 @@ #include <qcstring.h> #include <qmap.h> -class QTextStream; +class FTextStream; class CodeOutputInterface; -class QString; /*! @brief Concrete visitor implementation for LaTeX output. */ class LatexDocVisitor : public DocVisitor { public: - LatexDocVisitor(QTextStream &t,CodeOutputInterface &ci, + LatexDocVisitor(FTextStream &t,CodeOutputInterface &ci, const char *langExt,bool insideTabbing); //-------------------------------------- @@ -137,15 +136,15 @@ class LatexDocVisitor : public DocVisitor //-------------------------------------- void filter(const char *str); - void startLink(const QString &ref,const QString &file, - const QString &anchor); - void endLink(const QString &ref,const QString &file, - const QString &anchor); - QString escapeMakeIndexChars(const char *s); - void startDotFile(const QString &fileName,const QString &width, - const QString &height, bool hasCaption); + void startLink(const QCString &ref,const QCString &file, + const QCString &anchor); + void endLink(const QCString &ref,const QCString &file, + const QCString &anchor); + QCString escapeMakeIndexChars(const char *s); + void startDotFile(const QCString &fileName,const QCString &width, + const QCString &height, bool hasCaption); void endDotFile(bool hasCaption); - void writeMscFile(const QString &fileName); + void writeMscFile(const QCString &fileName); void pushEnabled(); void popEnabled(); @@ -154,7 +153,7 @@ class LatexDocVisitor : public DocVisitor // state variables //-------------------------------------- - QTextStream &m_t; + FTextStream &m_t; CodeOutputInterface &m_ci; bool m_insidePre; bool m_insideItem; |