merge the formfield patch from ooo-build
[ooovba.git] / configmgr / source / backendhelper / componentdf.cxx
blob137a112099cbfd8be29da5f1d4e9b12ac849a1f7
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: componentdf.cxx,v $
10 * $Revision: 1.6 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_configmgr.hxx"
33 #include "backendlayerhelper.hxx"
34 #include <com/sun/star/registry/XRegistryKey.hpp>
35 #ifndef _CPPUHELPER_IMPLEMENTATIONENTRY_HXX_
36 #include <cppuhelper/implementationentry.hxx>
37 #endif // _CPPUHELPER_IMPLEMENTATIONENTRY_HXX_
39 //==============================================================================
41 static com::sun::star::uno::Reference<com::sun::star::uno::XInterface> SAL_CALL createBackendLayerHelper(
42 const com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext>& aContext) {
43 return * new configmgr::backendhelper::BackendLayerHelper(aContext) ;
45 //==============================================================================
47 //------------------------------------------------------------------------------
49 static const cppu::ImplementationEntry kImplementations_entries[] =
52 createBackendLayerHelper,
53 configmgr::backendhelper::BackendLayerHelper::getBackendLayerHelperName,
54 configmgr::backendhelper::BackendLayerHelper::getBackendLayerHelperServiceNames,
55 cppu::createSingleComponentFactory,
56 NULL,
59 { NULL, NULL, NULL, NULL, NULL, 0 }
60 } ;
61 //------------------------------------------------------------------------------
63 extern "C" SAL_DLLPUBLIC_EXPORT void SAL_CALL
64 component_getImplementationEnvironment(
65 const sal_Char **ppEnvTypeName,
66 uno_Environment ** /* ppEnv */
69 *ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME ;
71 //------------------------------------------------------------------------------
73 extern "C" SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL component_writeInfo(
74 void *aServiceManager, void *aRegistryKey)
76 return cppu::component_writeInfoHelper(aServiceManager,
77 aRegistryKey,
78 kImplementations_entries) ;
80 //------------------------------------------------------------------------------
82 extern "C" SAL_DLLPUBLIC_EXPORT void *component_getFactory(
83 const sal_Char *aImplementationName, void *aServiceManager,
84 void *aRegistryKey)
86 return cppu::component_getFactoryHelper(aImplementationName,
87 aServiceManager,
88 aRegistryKey,
89 kImplementations_entries) ;
91 //------------------------------------------------------------------------------