summaryrefslogtreecommitdiffstats
path: root/src/qhpxmlwriter.h
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-03-28 11:58:30 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2021-03-28 12:25:48 (GMT)
commitc48639744a6fa118b9851b307107994ba93ce4c8 (patch)
tree8917c567f8f00560fba4554ade2b7e79bbe3ff45 /src/qhpxmlwriter.h
parentcef71dc4fcfca9e3580214c39f20dc538ed6b2d9 (diff)
downloadDoxygen-c48639744a6fa118b9851b307107994ba93ce4c8.zip
Doxygen-c48639744a6fa118b9851b307107994ba93ce4c8.tar.gz
Doxygen-c48639744a6fa118b9851b307107994ba93ce4c8.tar.bz2
Refactoring: Add TextStream buffer to improve output writing performance
- direct use of std::stringstream and std::ostream gave a 30% drop in performance.
Diffstat (limited to 'src/qhpxmlwriter.h')
-rw-r--r--src/qhpxmlwriter.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/qhpxmlwriter.h b/src/qhpxmlwriter.h
index f883ba6..bc927d4 100644
--- a/src/qhpxmlwriter.h
+++ b/src/qhpxmlwriter.h
@@ -17,9 +17,10 @@
#ifndef QHPXMLWRITER_H
#define QHPXMLWRITER_H
-#include <iostream>
#include <sstream>
+class TextStream;
+
class QhpXmlWriter
{
public:
@@ -29,7 +30,7 @@ class QhpXmlWriter
void setIndentLevel(int level);
void setCompressionEnabled(bool enabled);
void insert(QhpXmlWriter const & source);
- void dumpTo(std::ostream & file);
+ void dumpTo(TextStream & file);
void open(char const * elementName,
char const * const * attributes = 0);
void openClose(char const * elementName,