1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
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> > const ResourceIndexAccessServiceImpl
;
19 sdecl::class_
< ::extensions::resource::OpenOfficeResourceLoader
> const OpenOfficeResourceLoaderServiceImpl
;
21 const sdecl::ServiceDecl
ResourceIndexAccessDecl(
22 ResourceIndexAccessServiceImpl
,
23 "org.libreoffice.extensions.resource.ResourceIndexAccess",
24 "org.libreoffice.resource.ResourceIndexAccess");
26 //TODO: this is a singleton, not a service:
27 const sdecl::ServiceDecl
OpenOfficeResourceLoaderDecl(
28 OpenOfficeResourceLoaderServiceImpl
,
29 "com.sun.star.comp.resource.OpenOfficeResourceLoader",
30 "com.sun.star.resource.OfficeResourceLoader");
32 extern "C" SAL_DLLPUBLIC_EXPORT
void* SAL_CALL
res_component_getFactory(
33 sal_Char
const* pImplName
, void*, void*)
35 return sdecl::component_getFactoryHelper( pImplName
,
36 {&ResourceIndexAccessDecl
, &OpenOfficeResourceLoaderDecl
} );
39 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */