cb9c3c754c
Change-Id: I3fddb38d4bac2aeba7533163e7e6779732a5448c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167707 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
24 lines
630 B
C++
24 lines
630 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/.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <libodfgen/libodfgen.hxx>
|
|
|
|
#include "DocumentHandlerFor.hxx"
|
|
|
|
#include <rtl/ustring.hxx>
|
|
|
|
namespace writerperfect
|
|
{
|
|
template <> struct DocumentHandlerFor<OdtGenerator>
|
|
{
|
|
static OUString name() { return u"com.sun.star.comp.Writer.XMLOasisImporter"_ustr; }
|
|
};
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|