diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.com> | 2014-08-16 20:25:49 +0200 |
---|---|---|
committer | Tomaž Vajngerl <tomaz.vajngerl@collabora.com> | 2014-08-16 20:49:19 +0200 |
commit | 8a3a2e888bf805c602c217733510114e0521eedf (patch) | |
tree | 07b03e13fe4d3a70492f71685845f7924f484852 /include/test/mtfxmldump.hxx | |
parent | 20d8a3474b0570997d8d241a55244228f0e38ce3 (diff) |
mtfxmldump: move XML writing into its own function
Change-Id: I82954177fe9d4934e69b33c1c985304add09e089
Diffstat (limited to 'include/test/mtfxmldump.hxx')
-rw-r--r-- | include/test/mtfxmldump.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/test/mtfxmldump.hxx b/include/test/mtfxmldump.hxx index e91eb6bb1d5e..997d023412b8 100644 --- a/include/test/mtfxmldump.hxx +++ b/include/test/mtfxmldump.hxx @@ -17,10 +17,14 @@ #include <vcl/gdimtf.hxx> #include <vector> +class XmlWriter; + class OOO_DLLPUBLIC_TEST MetafileXmlDump { std::vector<bool> maFilter; + void writeXml(GDIMetaFile& rMetaFile, XmlWriter& rWriter); + public: MetafileXmlDump(); virtual ~MetafileXmlDump(); |