summaryrefslogtreecommitdiff
path: root/include/test/xmlwriter.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/test/xmlwriter.hxx')
-rw-r--r--include/test/xmlwriter.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/test/xmlwriter.hxx b/include/test/xmlwriter.hxx
index b640639041f3..243b7fc0b869 100644
--- a/include/test/xmlwriter.hxx
+++ b/include/test/xmlwriter.hxx
@@ -16,13 +16,16 @@
#include <rtl/ustring.hxx>
#include <rtl/string.hxx>
+#include <tools/stream.hxx>
+
class OOO_DLLPUBLIC_TEST XmlWriter
{
private:
+ SvStream* mpStream;
xmlTextWriterPtr mpWriter;
public:
- XmlWriter(xmlTextWriterPtr pWriter);
+ XmlWriter(SvStream* pStream);
virtual ~XmlWriter();
void startDocument();