Version 6.4.0.3, tag libreoffice-6.4.0.3
[LibreOffice.git] / configmgr / source / services.cxx
blob48ccd8a33c5620bbd1ef762aca65bd4ca7024aab
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <sal/config.h>
22 #include <cassert>
24 #include <com/sun/star/uno/Reference.hxx>
25 #include <com/sun/star/uno/XInterface.hpp>
26 #include <cppuhelper/factory.hxx>
27 #include <cppuhelper/implementationentry.hxx>
28 #include <sal/types.h>
30 #include "configurationprovider.hxx"
31 #include "configurationregistry.hxx"
32 #include "defaultprovider.hxx"
33 #include "readonlyaccess.hxx"
34 #include "readwriteaccess.hxx"
35 #include "update.hxx"
37 namespace {
39 css::uno::Reference< css::uno::XInterface > dummy(
40 SAL_UNUSED_PARAMETER css::uno::Reference< css::uno::XComponentContext >
41 const &)
43 assert(false);
44 return css::uno::Reference< css::uno::XInterface >();
47 static cppu::ImplementationEntry const services[] = {
48 { &dummy, &configmgr::configuration_provider::getImplementationName,
49 &configmgr::configuration_provider::getSupportedServiceNames,
50 &configmgr::configuration_provider::createFactory, nullptr, 0 },
51 { &configmgr::default_provider::create,
52 &configmgr::default_provider::getImplementationName,
53 &configmgr::default_provider::getSupportedServiceNames,
54 &cppu::createSingleComponentFactory, nullptr, 0 },
55 { &configmgr::configuration_registry::create,
56 &configmgr::configuration_registry::getImplementationName,
57 &configmgr::configuration_registry::getSupportedServiceNames,
58 &cppu::createSingleComponentFactory, nullptr, 0 },
59 { &configmgr::read_only_access::create,
60 &configmgr::read_only_access::getImplementationName,
61 &configmgr::read_only_access::getSupportedServiceNames,
62 &cppu::createSingleComponentFactory, nullptr, 0 },
63 { &configmgr::read_write_access::create,
64 &configmgr::read_write_access::getImplementationName,
65 &configmgr::read_write_access::getSupportedServiceNames,
66 &cppu::createSingleComponentFactory, nullptr, 0 },
67 { &configmgr::update::create, &configmgr::update::getImplementationName,
68 &configmgr::update::getSupportedServiceNames,
69 &cppu::createSingleComponentFactory, nullptr, 0 },
70 { nullptr, nullptr, nullptr, nullptr, nullptr, 0 }
75 extern "C" SAL_DLLPUBLIC_EXPORT void * configmgr_component_getFactory(
76 char const * pImplName, void * pServiceManager, void * pRegistryKey)
78 return cppu::component_getFactoryHelper(
79 pImplName, pServiceManager, pRegistryKey, services);
82 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */