diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.com> | 2014-08-16 20:30:18 +0200 |
---|---|---|
committer | Tomaž Vajngerl <tomaz.vajngerl@collabora.com> | 2014-08-16 20:49:20 +0200 |
commit | d3a59629f79da913b4a3ee367cdf70d0f5167416 (patch) | |
tree | 44979202a3012247bebec5c3dab9b31275609602 /include/test | |
parent | 8a3a2e888bf805c602c217733510114e0521eedf (diff) |
XmlWriter: simplify and take SvStream* as input
Change-Id: I56b2fa6887f7971604a2dcf34497ecda9cea8937
Diffstat (limited to 'include/test')
-rw-r--r-- | include/test/xmlwriter.hxx | 5 |
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(); |