fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / include / cppuhelper / component_context.hxx
blob575fa490a452c782f3ef0d42988417816bd49588
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 _CPPUHELPER_COMPONENT_CONTEXT_HXX_
20 #define _CPPUHELPER_COMPONENT_CONTEXT_HXX_
22 #include <com/sun/star/uno/XComponentContext.hpp>
23 #include <com/sun/star/lang/XSingleComponentFactory.hpp>
24 #include "cppuhelperdllapi.h"
27 namespace cppu
30 /** Context entries init struct calling createComponentContext().
32 struct ContextEntry_Init
34 /** late init denotes a object that will be raised when first get() is calling for it
36 The context implementation expects either a com::sun::star::lang::XSingleComponentFactory
37 object as value (to instanciate the object) or a string as value for raising
38 a service via the used service manager.
40 bool bLateInitService;
41 /** name of context value
43 ::rtl::OUString name;
44 /** context value
46 ::com::sun::star::uno::Any value;
48 /** Default ctor.
50 inline ContextEntry_Init() SAL_THROW(())
51 : bLateInitService( false )
53 /** Ctor.
55 @param name_
56 name of entry
57 @param value_
58 value of entry
59 @param bLateInitService_
60 whether this entry is a late-init named object entry
61 (value is object factory or service string)
63 inline ContextEntry_Init(
64 ::rtl::OUString const & name_,
65 ::com::sun::star::uno::Any const & value_,
66 bool bLateInitService_ = false ) SAL_THROW(())
67 : bLateInitService( bLateInitService_ ),
68 name( name_ ),
69 value( value_ )
73 /** Creates a component context with the given entries.
75 @param pEntries array of entries
76 @param nEntries number of entries
77 @param xDelegate delegation to further context, if value was not found
78 @return new context object
80 CPPUHELPER_DLLPUBLIC ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >
81 SAL_CALL createComponentContext(
82 ContextEntry_Init const * pEntries, sal_Int32 nEntries,
83 ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & xDelegate =
84 ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >() )
85 SAL_THROW(());
89 #endif
91 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */