c40b84c458
Change-Id: Ice159ae9fcb7284143d9e4734b8cb34f5c6a2ec5
31 lines
754 B
C++
31 lines
754 B
C++
/* -*- 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: */
|