/src/libreoffice/writerperfect/inc/DocumentHandlerForOdt.hxx
Line | Count | Source |
1 | | /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
2 | | /* |
3 | | * This Source Code Form is subject to the terms of the Mozilla Public |
4 | | * License, v. 2.0. If a copy of the MPL was not distributed with this |
5 | | * file, You can obtain one at http://mozilla.org/MPL/2.0/. |
6 | | */ |
7 | | |
8 | | #pragma once |
9 | | |
10 | | #include <libodfgen/libodfgen.hxx> |
11 | | |
12 | | #include "DocumentHandlerFor.hxx" |
13 | | |
14 | | #include <rtl/ustring.hxx> |
15 | | |
16 | | namespace writerperfect |
17 | | { |
18 | | template <> struct DocumentHandlerFor<OdtGenerator> |
19 | | { |
20 | 0 | static OUString name() { return u"com.sun.star.comp.Writer.XMLOasisImporter"_ustr; } |
21 | | }; |
22 | | } |
23 | | |
24 | | /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |