2010-10-12 08:53:47 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2009-05-15 07:06:56 -05:00
|
|
|
/*************************************************************************
|
2010-02-25 08:59:15 -06:00
|
|
|
*
|
2009-05-15 07:06:56 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
2010-02-25 08:59:15 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2009-05-15 07:06:56 -05:00
|
|
|
*
|
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
|
|
*
|
|
|
|
* This file is part of OpenOffice.org.
|
|
|
|
*
|
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2010-02-25 08:59:15 -06:00
|
|
|
*
|
2009-05-15 07:06:56 -05:00
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#include "precompiled_configmgr.hxx"
|
|
|
|
#include "sal/config.h"
|
|
|
|
|
|
|
|
#include "com/sun/star/uno/Exception.hpp"
|
|
|
|
#include "com/sun/star/uno/Reference.hxx"
|
|
|
|
#include "com/sun/star/uno/XComponentContext.hpp"
|
|
|
|
#include "com/sun/star/uno/XInterface.hpp"
|
2010-10-25 07:43:41 -05:00
|
|
|
#include "cppuhelper/factory.hxx"
|
2009-05-15 07:06:56 -05:00
|
|
|
#include "cppuhelper/implementationentry.hxx"
|
|
|
|
#include "osl/diagnose.h"
|
|
|
|
#include "uno/lbnames.h"
|
|
|
|
#include "sal/types.h"
|
|
|
|
|
|
|
|
#include "configurationprovider.hxx"
|
2010-02-04 09:12:36 -06:00
|
|
|
#include "configurationregistry.hxx"
|
2009-05-15 07:06:56 -05:00
|
|
|
#include "defaultprovider.hxx"
|
2010-05-04 09:29:02 -05:00
|
|
|
#include "update.hxx"
|
2009-05-15 07:06:56 -05:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
namespace css = com::sun::star;
|
|
|
|
|
|
|
|
css::uno::Reference< css::uno::XInterface > SAL_CALL dummy(
|
|
|
|
css::uno::Reference< css::uno::XComponentContext > const &)
|
|
|
|
SAL_THROW((css::uno::Exception))
|
|
|
|
{
|
|
|
|
OSL_ASSERT(false);
|
|
|
|
return css::uno::Reference< css::uno::XInterface >();
|
|
|
|
}
|
|
|
|
|
|
|
|
static cppu::ImplementationEntry const services[] = {
|
|
|
|
{ &dummy, &configmgr::configuration_provider::getImplementationName,
|
|
|
|
&configmgr::configuration_provider::getSupportedServiceNames,
|
|
|
|
&configmgr::configuration_provider::createFactory, 0, 0 },
|
2010-10-25 07:43:41 -05:00
|
|
|
{ &configmgr::default_provider::create,
|
|
|
|
&configmgr::default_provider::getImplementationName,
|
2009-09-28 09:01:20 -05:00
|
|
|
&configmgr::default_provider::getSupportedServiceNames,
|
2010-10-25 07:43:41 -05:00
|
|
|
&cppu::createSingleComponentFactory, 0, 0 },
|
|
|
|
{ &configmgr::configuration_registry::create,
|
|
|
|
&configmgr::configuration_registry::getImplementationName,
|
2010-02-04 09:12:36 -06:00
|
|
|
&configmgr::configuration_registry::getSupportedServiceNames,
|
2010-10-25 07:43:41 -05:00
|
|
|
&cppu::createSingleComponentFactory, 0, 0 },
|
|
|
|
{ &configmgr::update::create, &configmgr::update::getImplementationName,
|
2010-05-04 09:29:02 -05:00
|
|
|
&configmgr::update::getSupportedServiceNames,
|
2010-10-25 07:43:41 -05:00
|
|
|
&cppu::createSingleComponentFactory, 0, 0 },
|
2009-05-15 07:06:56 -05:00
|
|
|
{ 0, 0, 0, 0, 0, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL component_getFactory(
|
|
|
|
char const * pImplName, void * pServiceManager, void * pRegistryKey)
|
|
|
|
{
|
|
|
|
return cppu::component_getFactoryHelper(
|
|
|
|
pImplName, pServiceManager, pRegistryKey, services);
|
|
|
|
}
|
|
|
|
|
2011-04-20 17:27:41 -05:00
|
|
|
extern "C" SAL_DLLPUBLIC_EXPORT void SAL_CALL component_getImplementationEnvironment(
|
2009-05-15 07:06:56 -05:00
|
|
|
char const ** ppEnvTypeName, uno_Environment **)
|
|
|
|
{
|
|
|
|
*ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME;
|
|
|
|
}
|
|
|
|
|
2010-10-12 08:53:47 -05:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|