fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / udkapi / com / sun / star / lang / RegistryServiceManager.idl
blobf0b0b7a0dbae13c896a4046997c94ed55af4c187
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 .
19 #ifndef __com_sun_star_lang_RegistryServiceManager_idl__
20 #define __com_sun_star_lang_RegistryServiceManager_idl__
22 #include <com/sun/star/lang/ServiceManager.idl>
24 #include <com/sun/star/lang/MultiServiceFactory.idl>
26 #include <com/sun/star/lang/XInitialization.idl>
28 #include <com/sun/star/beans/XPropertySet.idl>
30 #include <com/sun/star/registry/XSimpleRegistry.idl>
34 module com { module sun { module star { module lang {
37 /** Provides a collection of implementations for services reading from a
38 persistent registry storage.
40 For usage of the service manager have a look at service description
41 of ServiceManager.
43 @see ServiceManager
45 published service RegistryServiceManager
47 /** This is a derived ServiceManager service.
49 service com::sun::star::lang::ServiceManager;
51 /** The first two arguments of the intitialization arguments reference:
52 <ol>
53 <li>a simple registry
54 (com::sun::star::registry::XSimpleRegistry),
55 i.e. the registry to be read from</li>
56 <li>a component context
57 (com::sun::star::uno::XComponentContext)
58 to be installed as "DefaultContext" property of the
59 ServiceManager which is the context to be used
60 using the XMultiServiceFactory interface.</li>
61 </ol>
63 interface com::sun::star::lang::XInitialization;
65 /** Property access.
67 interface com::sun::star::beans::XPropertySet;
68 /** Specifies the current registry to be read from.
70 [readonly, property] com::sun::star::registry::XSimpleRegistry Registry;
74 }; }; }; };
76 #endif
78 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */