summaryrefslogtreecommitdiffstats
path: root/src/xmlgen.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/xmlgen.h')
-rw-r--r--src/xmlgen.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/xmlgen.h b/src/xmlgen.h
index 58f9a64..01914a6 100644
--- a/src/xmlgen.h
+++ b/src/xmlgen.h
@@ -15,11 +15,13 @@
#include "outputgen.h"
+class TextStream;
+
class XMLCodeGenerator : public CodeOutputInterface
{
public:
- XMLCodeGenerator(std::ostream &t) : m_t(t), m_lineNumber(-1), m_isMemberRef(FALSE), m_col(0),
+ XMLCodeGenerator(TextStream &t) : m_t(t), m_lineNumber(-1), m_isMemberRef(FALSE), m_col(0),
m_insideCodeLine(FALSE), m_normalHLNeedStartTag(TRUE), m_insideSpecialHL(FALSE) {}
virtual ~XMLCodeGenerator() { }
@@ -45,7 +47,7 @@ class XMLCodeGenerator : public CodeOutputInterface
void finish();
private:
- std::ostream &m_t;
+ TextStream &m_t;
QCString m_refId;
QCString m_external;
int m_lineNumber;