summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.com>2014-08-16 20:30:18 +0200
committerTomaž Vajngerl <tomaz.vajngerl@collabora.com>2014-08-16 20:49:20 +0200
commitd3a59629f79da913b4a3ee367cdf70d0f5167416 (patch)
tree44979202a3012247bebec5c3dab9b31275609602 /include
parent8a3a2e888bf805c602c217733510114e0521eedf (diff)
XmlWriter: simplify and take SvStream* as input
Change-Id: I56b2fa6887f7971604a2dcf34497ecda9cea8937
Diffstat (limited to 'include')
-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();