From d3a59629f79da913b4a3ee367cdf70d0f5167416 Mon Sep 17 00:00:00 2001 From: Tomaž Vajngerl Date: Sat, 16 Aug 2014 20:30:18 +0200 Subject: XmlWriter: simplify and take SvStream* as input Change-Id: I56b2fa6887f7971604a2dcf34497ecda9cea8937 --- include/test/xmlwriter.hxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'include') 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 #include +#include + class OOO_DLLPUBLIC_TEST XmlWriter { private: + SvStream* mpStream; xmlTextWriterPtr mpWriter; public: - XmlWriter(xmlTextWriterPtr pWriter); + XmlWriter(SvStream* pStream); virtual ~XmlWriter(); void startDocument(); -- cgit