bump product version to 5.0.4.1
[LibreOffice.git] / comphelper / source / misc / comphelper_services.cxx
blobe86055cc836ac7945e072b9e05d28c51b5be1e28
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 .
21 #include "comphelper_module.hxx"
22 #include "comphelper_services.hxx"
24 #include <rtl/instance.hxx>
26 namespace comphelper { namespace module
30 namespace
32 class doInitialize
34 public:
35 doInitialize()
37 createRegistryInfo_OPropertyBag();
38 createRegistryInfo_SequenceOutputStream();
39 createRegistryInfo_SequenceInputStream();
40 createRegistryInfo_UNOMemoryStream();
41 createRegistryInfo_IndexedPropertyValuesContainer();
42 createRegistryInfo_NamedPropertyValuesContainer();
43 createRegistryInfo_AnyCompareFactory();
44 createRegistryInfo_OfficeInstallationDirectories();
45 createRegistryInfo_OInstanceLocker();
46 createRegistryInfo_Map();
47 createRegistryInfo_OSimpleLogRing();
48 createRegistryInfo_OOfficeRestartManager();
52 struct theInitializer : public rtl::Static< doInitialize, theInitializer > {};
55 static void initializeModule()
57 theInitializer::get();
61 } } // namespace comphelper::module
64 extern "C" SAL_DLLPUBLIC_EXPORT void* SAL_CALL comphelp_component_getFactory(
65 const sal_Char* pImplementationName, SAL_UNUSED_PARAMETER void*,
66 SAL_UNUSED_PARAMETER void* )
68 ::comphelper::module::initializeModule();
69 return ::comphelper::module::ComphelperModule::getInstance().getComponentFactory( pImplementationName );
72 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */