bump product version to 5.0.4.1
[LibreOffice.git] / xmloff / source / transform / XMLFilterRegistration.hxx
blobcb583ecf200ac4de83eaadf0f699e6884b351dbf
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_XMLOFF_SOURCE_TRANSFORM_XMLFILTERREGISTRATION_HXX
21 #define INCLUDED_XMLOFF_SOURCE_TRANSFORM_XMLFILTERREGISTRATION_HXX
23 #include <sal/config.h>
25 #define DECLARE_SERVICE( classname ) \
26 OUString SAL_CALL classname##_getImplementationName() throw(); \
27 css::uno::Sequence< OUString > SAL_CALL classname##_getSupportedServiceNames() throw(); \
28 css::uno::Reference< css::uno::XInterface > SAL_CALL classname##_createInstance( \
29 const css::uno::Reference< css::lang::XMultiServiceFactory > & rSMgr ) throw( css::uno::Exception );
31 DECLARE_SERVICE( OOo2OasisTransformer )
32 DECLARE_SERVICE( Oasis2OOoTransformer )
34 DECLARE_SERVICE( XMLAutoTextEventImportOOO )
35 DECLARE_SERVICE( XMLMetaImportOOO )
36 DECLARE_SERVICE( XMLMathSettingsImportOOO )
37 DECLARE_SERVICE( XMLMathMetaImportOOO )
38 DECLARE_SERVICE( XMLCalcSettingsImportOOO )
39 DECLARE_SERVICE( XMLCalcMetaImportOOO )
40 DECLARE_SERVICE( XMLCalcContentImportOOO )
41 DECLARE_SERVICE( XMLCalcStylesImportOOO )
42 DECLARE_SERVICE( XMLCalcImportOOO )
43 DECLARE_SERVICE( XMLWriterSettingsImportOOO )
44 DECLARE_SERVICE( XMLWriterMetaImportOOO )
45 DECLARE_SERVICE( XMLWriterContentImportOOO )
46 DECLARE_SERVICE( XMLWriterStylesImportOOO )
47 DECLARE_SERVICE( XMLWriterImportOOO )
48 DECLARE_SERVICE( XMLChartContentImportOOO )
49 DECLARE_SERVICE( XMLChartStylesImportOOO )
50 DECLARE_SERVICE( XMLChartImportOOO )
51 DECLARE_SERVICE( XMLDrawSettingsImportOOO )
52 DECLARE_SERVICE( XMLDrawMetaImportOOO )
53 DECLARE_SERVICE( XMLDrawContentImportOOO )
54 DECLARE_SERVICE( XMLDrawStylesImportOOO )
55 DECLARE_SERVICE( XMLDrawImportOOO )
56 DECLARE_SERVICE( XMLImpressSettingsImportOOO )
57 DECLARE_SERVICE( XMLImpressMetaImportOOO )
58 DECLARE_SERVICE( XMLImpressContentImportOOO )
59 DECLARE_SERVICE( XMLImpressStylesImportOOO )
60 DECLARE_SERVICE( XMLImpressImportOOO )
62 #endif
64 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */