diff options
author | David Tardon <dtardon@redhat.com> | 2017-02-14 10:12:48 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2017-02-15 10:15:40 +0100 |
commit | c40b84c458b99a4655b1cdb10dee68236121fcae (patch) | |
tree | 0e280b68328095f78355e0da3b6ee8dbf8c3d99d /writerperfect/inc | |
parent | 4e0ac535a96dc461a795d399677123eebf0cf787 (diff) |
move headers used by tests to inc/
Change-Id: Ice159ae9fcb7284143d9e4734b8cb34f5c6a2ec5
Diffstat (limited to 'writerperfect/inc')
-rw-r--r-- | writerperfect/inc/DocumentHandlerForOdg.hxx | 31 | ||||
-rw-r--r-- | writerperfect/inc/DocumentHandlerForOdp.hxx | 31 | ||||
-rw-r--r-- | writerperfect/inc/DocumentHandlerForOds.hxx | 31 | ||||
-rw-r--r-- | writerperfect/inc/DocumentHandlerForOdt.hxx | 31 |
4 files changed, 124 insertions, 0 deletions
diff --git a/writerperfect/inc/DocumentHandlerForOdg.hxx b/writerperfect/inc/DocumentHandlerForOdg.hxx new file mode 100644 index 000000000000..4f64066a42ed --- /dev/null +++ b/writerperfect/inc/DocumentHandlerForOdg.hxx @@ -0,0 +1,31 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#ifndef INCLUDED_WRITERPERFECT_INC_DOCUMENTHANDLERFORODG_HXX +#define INCLUDED_WRITERPERFECT_INC_DOCUMENTHANDLERFORODG_HXX + +#include <libodfgen/libodfgen.hxx> + +#include "DocumentHandlerFor.hxx" + +namespace writerperfect +{ + +template<> +struct DocumentHandlerFor<OdgGenerator> +{ + static const rtl::OUString name() + { + return rtl::OUString("com.sun.star.comp.Draw.XMLOasisImporter"); + } +}; + +} + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/writerperfect/inc/DocumentHandlerForOdp.hxx b/writerperfect/inc/DocumentHandlerForOdp.hxx new file mode 100644 index 000000000000..83190470d2fe --- /dev/null +++ b/writerperfect/inc/DocumentHandlerForOdp.hxx @@ -0,0 +1,31 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#ifndef INCLUDED_WRITERPERFECT_INC_DOCUMENTHANDLERFORODP_HXX +#define INCLUDED_WRITERPERFECT_INC_DOCUMENTHANDLERFORODP_HXX + +#include <libodfgen/libodfgen.hxx> + +#include "DocumentHandlerFor.hxx" + +namespace writerperfect +{ + +template<> +struct DocumentHandlerFor<OdpGenerator> +{ + static const rtl::OUString name() + { + return rtl::OUString("com.sun.star.comp.Impress.XMLOasisImporter"); + } +}; + +} + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/writerperfect/inc/DocumentHandlerForOds.hxx b/writerperfect/inc/DocumentHandlerForOds.hxx new file mode 100644 index 000000000000..e7762c40eb4d --- /dev/null +++ b/writerperfect/inc/DocumentHandlerForOds.hxx @@ -0,0 +1,31 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#ifndef INCLUDED_WRITERPERFECT_INC_DOCUMENTHANDLERFORODS_HXX +#define INCLUDED_WRITERPERFECT_INC_DOCUMENTHANDLERFORODS_HXX + +#include <libodfgen/libodfgen.hxx> + +#include "DocumentHandlerFor.hxx" + +namespace writerperfect +{ + +template<> +struct DocumentHandlerFor<OdsGenerator> +{ + static const rtl::OUString name() + { + return rtl::OUString("com.sun.star.comp.Calc.XMLOasisImporter"); + } +}; + +} + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/writerperfect/inc/DocumentHandlerForOdt.hxx b/writerperfect/inc/DocumentHandlerForOdt.hxx new file mode 100644 index 000000000000..8607119a8c2b --- /dev/null +++ b/writerperfect/inc/DocumentHandlerForOdt.hxx @@ -0,0 +1,31 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#ifndef INCLUDED_WRITERPERFECT_INC_DOCUMENTHANDLERFORODT_HXX +#define INCLUDED_WRITERPERFECT_INC_DOCUMENTHANDLERFORODT_HXX + +#include <libodfgen/libodfgen.hxx> + +#include "DocumentHandlerFor.hxx" + +namespace writerperfect +{ + +template<> +struct DocumentHandlerFor<OdtGenerator> +{ + static const rtl::OUString name() + { + return rtl::OUString("com.sun.star.comp.Writer.XMLOasisImporter"); + } +}; + +} + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |