1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: componentdefn.cxx,v $
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 "systemintegrationmanager.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
createSystemIntegrationManager(
42 const com::sun::star::uno::Reference
<com::sun::star::uno::XComponentContext
>& aContext
) {
43 return * new configmgr::backend::SystemIntegrationManager(aContext
) ;
45 //==============================================================================
47 //------------------------------------------------------------------------------
49 static const cppu::ImplementationEntry kImplementations_entries
[] =
52 createSystemIntegrationManager
,
53 configmgr::backend::SystemIntegrationManager::getSystemIntegrationManagerName
,
54 configmgr::backend::SystemIntegrationManager::getServiceNames
,
55 cppu::createSingleComponentFactory
,
59 { NULL
, NULL
, NULL
, NULL
, NULL
, 0 }
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
;
72 //------------------------------------------------------------------------------
74 extern "C" SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL
component_writeInfo(
75 void *aServiceManager
, void *aRegistryKey
)
77 return cppu::component_writeInfoHelper(aServiceManager
,
79 kImplementations_entries
) ;
81 //------------------------------------------------------------------------------
83 extern "C" SAL_DLLPUBLIC_EXPORT
void *component_getFactory(
84 const sal_Char
*aImplementationName
, void *aServiceManager
,
87 return cppu::component_getFactoryHelper(aImplementationName
,
90 kImplementations_entries
) ;
92 //------------------------------------------------------------------------------