2010-10-12 15:53:47 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2009-05-15 14:06:56 +02:00
|
|
|
/*************************************************************************
|
2010-02-25 15:59:15 +01:00
|
|
|
*
|
2009-05-15 14:06:56 +02:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
2010-02-25 15:59:15 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2009-05-15 14:06:56 +02: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 15:59:15 +01:00
|
|
|
*
|
2009-05-15 14:06:56 +02:00
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#include "sal/config.h"
|
|
|
|
|
2011-11-29 11:54:46 +01:00
|
|
|
#include <cassert>
|
|
|
|
|
2009-05-15 14:06:56 +02:00
|
|
|
#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 14:43:41 +02:00
|
|
|
#include "cppuhelper/factory.hxx"
|
2009-05-15 14:06:56 +02:00
|
|
|
#include "cppuhelper/implementationentry.hxx"
|
|
|
|
#include "sal/types.h"
|
|
|
|
|
|
|
|
#include "configurationprovider.hxx"
|
2010-02-04 16:12:36 +01:00
|
|
|
#include "configurationregistry.hxx"
|
2009-05-15 14:06:56 +02:00
|
|
|
#include "defaultprovider.hxx"
|
2011-12-13 12:37:00 +01:00
|
|
|
#include "readonlyaccess.hxx"
|
|
|
|
#include "readwriteaccess.hxx"
|
2010-05-04 16:29:02 +02:00
|
|
|
#include "update.hxx"
|
2009-05-15 14:06:56 +02:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
namespace css = com::sun::star;
|
|
|
|
|
|
|
|
css::uno::Reference< css::uno::XInterface > SAL_CALL dummy(
|
2012-01-21 15:21:16 +01:00
|
|
|
SAL_UNUSED_PARAMETER css::uno::Reference< css::uno::XComponentContext >
|
|
|
|
const &)
|
2009-05-15 14:06:56 +02:00
|
|
|
SAL_THROW((css::uno::Exception))
|
|
|
|
{
|
2011-11-29 11:54:46 +01:00
|
|
|
assert(false);
|
2009-05-15 14:06:56 +02:00
|
|
|
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 14:43:41 +02:00
|
|
|
{ &configmgr::default_provider::create,
|
|
|
|
&configmgr::default_provider::getImplementationName,
|
2009-09-28 16:01:20 +02:00
|
|
|
&configmgr::default_provider::getSupportedServiceNames,
|
2010-10-25 14:43:41 +02:00
|
|
|
&cppu::createSingleComponentFactory, 0, 0 },
|
|
|
|
{ &configmgr::configuration_registry::create,
|
|
|
|
&configmgr::configuration_registry::getImplementationName,
|
2010-02-04 16:12:36 +01:00
|
|
|
&configmgr::configuration_registry::getSupportedServiceNames,
|
2010-10-25 14:43:41 +02:00
|
|
|
&cppu::createSingleComponentFactory, 0, 0 },
|
2011-12-13 12:37:00 +01:00
|
|
|
{ &configmgr::read_only_access::create,
|
|
|
|
&configmgr::read_only_access::getImplementationName,
|
|
|
|
&configmgr::read_only_access::getSupportedServiceNames,
|
|
|
|
&cppu::createSingleComponentFactory, 0, 0 },
|
|
|
|
{ &configmgr::read_write_access::create,
|
|
|
|
&configmgr::read_write_access::getImplementationName,
|
|
|
|
&configmgr::read_write_access::getSupportedServiceNames,
|
|
|
|
&cppu::createSingleComponentFactory, 0, 0 },
|
2010-10-25 14:43:41 +02:00
|
|
|
{ &configmgr::update::create, &configmgr::update::getImplementationName,
|
2010-05-04 16:29:02 +02:00
|
|
|
&configmgr::update::getSupportedServiceNames,
|
2010-10-25 14:43:41 +02:00
|
|
|
&cppu::createSingleComponentFactory, 0, 0 },
|
2009-05-15 14:06:56 +02:00
|
|
|
{ 0, 0, 0, 0, 0, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-02-17 23:15:26 +01:00
|
|
|
extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL configmgr_component_getFactory(
|
2009-05-15 14:06:56 +02:00
|
|
|
char const * pImplName, void * pServiceManager, void * pRegistryKey)
|
|
|
|
{
|
|
|
|
return cppu::component_getFactoryHelper(
|
|
|
|
pImplName, pServiceManager, pRegistryKey, services);
|
|
|
|
}
|
|
|
|
|
2010-10-12 15:53:47 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|