office-gobmx/writerperfect/inc/DocumentHandlerForOds.hxx
Noel Grandin cb9c3c754c loplugin:ostr in writerperfect
Change-Id: I3fddb38d4bac2aeba7533163e7e6779732a5448c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167707
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2024-05-16 08:49:38 +02:00

24 lines
628 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<OdsGenerator>
{
static OUString name() { return u"com.sun.star.comp.Calc.XMLOasisImporter"_ustr; }
};
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */