diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2018-01-07 12:05:53 +0900 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2018-01-07 09:34:44 +0100 |
commit | e1fb3d95ac6d58b60448981e82d90621cad7fea5 (patch) | |
tree | 0a409b12d7356847cde99572589ccc6953529e57 /include/test/primitive2dxmldump.hxx | |
parent | 27da558d7c1fe45b58d0bcc28b961fabbc5f2f1a (diff) |
Remove XmlWriter in test module and use tools::XmlWriter
Change-Id: I0a0e07a6a71ed95d783d35b7d94b857074ec3450
Reviewed-on: https://gerrit.libreoffice.org/47523
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'include/test/primitive2dxmldump.hxx')
-rw-r--r-- | include/test/primitive2dxmldump.hxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/test/primitive2dxmldump.hxx b/include/test/primitive2dxmldump.hxx index 80ef271ee720..5acf69999ecd 100644 --- a/include/test/primitive2dxmldump.hxx +++ b/include/test/primitive2dxmldump.hxx @@ -12,18 +12,17 @@ #include <sal/config.h> #include <test/testdllapi.hxx> -#include <test/xmlwriter.hxx> - #include <libxml/tree.h> #include <drawinglayer/primitive2d/baseprimitive2d.hxx> - #include <vector> +namespace tools { class XmlWriter; } + class OOO_DLLPUBLIC_TEST Primitive2dXmlDump final { private: std::vector<bool> maFilter; - void decomposeAndWrite(const drawinglayer::primitive2d::Primitive2DContainer& rPrimitive2DSequence, XmlWriter& rWriter); + void decomposeAndWrite(const drawinglayer::primitive2d::Primitive2DContainer& rPrimitive2DSequence, tools::XmlWriter& rWriter); public: Primitive2dXmlDump(); |