bump product version to 4.1.6.2
[LibreOffice.git] / extensions / source / resource / resourceservices.cxx
blobf45615b6c7423e720adf994c6311706eec73aa4d
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/.
8 */
11 #include <ResourceIndexAccess.hxx>
12 #include <oooresourceloader.hxx>
13 #include <comphelper/servicedecl.hxx>
14 #include <uno/environment.h>
16 namespace sdecl = ::comphelper::service_decl;
18 sdecl::class_< ::extensions::resource::ResourceIndexAccess, sdecl::with_args<true> > ResourceIndexAccessServiceImpl;
19 sdecl::class_< ::extensions::resource::OpenOfficeResourceLoader> OpenOfficeResourceLoaderServiceImpl;
21 const sdecl::ServiceDecl ResourceIndexAccessDecl(
22 ResourceIndexAccessServiceImpl,
23 "org.libreoffice.extensions.resource.ResourceIndexAccess",
24 "org.libreoffice.resource.ResourceIndexAccess");
26 const sdecl::ServiceDecl OpenOfficeResourceLoaderDecl(
27 OpenOfficeResourceLoaderServiceImpl,
28 "com.sun.star.comp.resource.OpenOfficeResourceLoader",
29 "com.sun.star.resource.OfficeResourceLoader");
31 extern "C" SAL_DLLPUBLIC_EXPORT void* SAL_CALL res_component_getFactory(
32 sal_Char const* pImplName,
33 ::com::sun::star::lang::XMultiServiceFactory* pServiceManager,
34 ::com::sun::star::registry::XRegistryKey* pRegistryKey )
36 return component_getFactoryHelper( pImplName, pServiceManager, pRegistryKey,
37 ResourceIndexAccessDecl, OpenOfficeResourceLoaderDecl );
40 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */