LibreOffice
LibreOffice 4.1 SDK C/C++ API Reference
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
cppuhelper
component_context.hxx
Go to the documentation of this file.
1
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
/*
3
* This file is part of the LibreOffice project.
4
*
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/.
8
*
9
* This file incorporates work covered by the following license notice:
10
*
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 .
18
*/
19
#ifndef _CPPUHELPER_COMPONENT_CONTEXT_HXX_
20
#define _CPPUHELPER_COMPONENT_CONTEXT_HXX_
21
22
#include <com/sun/star/uno/XComponentContext.hpp>
23
#include <com/sun/star/lang/XSingleComponentFactory.hpp>
24
#include "
cppuhelperdllapi.h
"
25
26
27
namespace
cppu
28
{
29
32
struct
ContextEntry_Init
33
{
40
bool
bLateInitService
;
43
::rtl::OUString
name
;
46
::com::sun::star::uno::Any
value
;
47
50
inline
ContextEntry_Init
()
SAL_THROW
(())
51
:
bLateInitService
( false )
52
{}
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_ )
70
{}
71
};
72
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
(());
86
87
}
88
89
#endif
90
91
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Generated on Tue Oct 29 2013 04:43:30 for LibreOffice by
1.8.4