23 #ifndef INCLUDED_CPPUHELPER_IMPLBASE1_HXX 24 #define INCLUDED_CPPUHELPER_IMPLBASE1_HXX 30 #include "com/sun/star/lang/XTypeProvider.hpp" 42 type_entry m_typeEntries[ 1 + 1 ];
45 template<
typename Ifc1,
typename Impl >
struct SAL_WARN_UNUSED ImplClassData1
47 class_data* operator ()()
49 static class_data1 s_cd =
52 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
54 CPPUHELPER_DETAIL_TYPEENTRY(Ifc1),
55 CPPUHELPER_DETAIL_TYPEENTRY(css::lang::XTypeProvider)
58 return reinterpret_cast< class_data *
>(&s_cd);
72 template<
class Ifc1 >
74 :
public css::lang::XTypeProvider
77 struct cd :
public rtl::StaticAggregate< class_data, ImplClassData1 < Ifc1, ImplHelper1<Ifc1> > > {};
79 #if defined LIBO_INTERNAL_ONLY 88 {
return ImplHelper_query( rType, cd::get(),
this ); }
90 {
return ImplHelper_getTypes( cd::get() ); }
92 {
return ImplHelper_getImplementationId( cd::get() ); }
94 #if !defined _MSC_VER // public -> protected changes mangled names there 111 template<
class Ifc1 >
114 ,
public css::lang::XTypeProvider
117 struct cd :
public rtl::StaticAggregate< class_data, ImplClassData1< Ifc1, WeakImplHelper1< Ifc1 > > > {};
120 {
return WeakImplHelper_query( rType, cd::get(),
this, static_cast<OWeakObject *>(
this) ); }
126 {
return WeakImplHelper_getTypes( cd::get() ); }
128 {
return ImplHelper_getImplementationId( cd::get() ); }
143 template<
class Ifc1 >
146 ,
public css::lang::XTypeProvider
149 struct cd :
public rtl::StaticAggregate< class_data, ImplClassData1< Ifc1, WeakAggImplHelper1< Ifc1 > > > {};
154 {
return WeakAggImplHelper_queryAgg( rType, cd::get(),
this, static_cast<OWeakAggObject *>(
this) ); }
160 {
return WeakAggImplHelper_getTypes( cd::get() ); }
162 {
return ImplHelper_getImplementationId( cd::get() ); }
180 template<
class BaseClass,
class Ifc1 >
185 struct cd :
public rtl::StaticAggregate< class_data, ImplClassData1< Ifc1, ImplInheritanceHelper1< BaseClass, Ifc1 > > > {};
187 template<
typename T1 >
189 template<
typename T1,
typename T2 >
191 BaseClass(arg1, arg2) {}
192 template<
typename T1,
typename T2,
typename T3 >
194 T1
const & arg1, T2
const & arg2, T3
const & arg3):
195 BaseClass(arg1, arg2, arg3) {}
196 template<
typename T1,
typename T2,
typename T3,
typename T4 >
198 T1
const & arg1, T2
const & arg2, T3
const & arg3, T4
const & arg4):
199 BaseClass(arg1, arg2, arg3, arg4) {}
201 typename T1,
typename T2,
typename T3,
typename T4,
typename T5 >
203 T1
const & arg1, T2
const & arg2, T3
const & arg3, T4
const & arg4,
205 BaseClass(arg1, arg2, arg3, arg4, arg5) {}
207 typename T1,
typename T2,
typename T3,
typename T4,
typename T5,
210 T1
const & arg1, T2
const & arg2, T3
const & arg3, T4
const & arg4,
211 T5
const & arg5, T6
const & arg6):
212 BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
217 css::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(),
this ) );
223 { BaseClass::acquire(); }
225 { BaseClass::release(); }
227 {
return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
229 {
return ImplHelper_getImplementationId( cd::get() ); }
248 template<
class BaseClass,
class Ifc1 >
253 struct cd :
public rtl::StaticAggregate< class_data, ImplClassData1< Ifc1, AggImplInheritanceHelper1< BaseClass, Ifc1 > > > {};
255 template<
typename T1 >
257 template<
typename T1,
typename T2 >
259 BaseClass(arg1, arg2) {}
260 template<
typename T1,
typename T2,
typename T3 >
262 T1
const & arg1, T2
const & arg2, T3
const & arg3):
263 BaseClass(arg1, arg2, arg3) {}
264 template<
typename T1,
typename T2,
typename T3,
typename T4 >
266 T1
const & arg1, T2
const & arg2, T3
const & arg3, T4
const & arg4):
267 BaseClass(arg1, arg2, arg3, arg4) {}
269 typename T1,
typename T2,
typename T3,
typename T4,
typename T5 >
271 T1
const & arg1, T2
const & arg2, T3
const & arg3, T4
const & arg4,
273 BaseClass(arg1, arg2, arg3, arg4, arg5) {}
275 typename T1,
typename T2,
typename T3,
typename T4,
typename T5,
278 T1
const & arg1, T2
const & arg2, T3
const & arg3, T4
const & arg4,
279 T5
const & arg5, T6
const & arg6):
280 BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
287 css::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(),
this ) );
290 return BaseClass::queryAggregation( rType );
293 { BaseClass::acquire(); }
295 { BaseClass::release(); }
297 {
return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
299 {
return ImplHelper_getImplementationId( cd::get() ); }
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
increasing m_refCount
css::uno::Any queryInterface(const css::uno::Type &rType, Interface1 *p1)
Compares demanded type to given template argument types.
Definition: queryinterface.hxx:43
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
Definition: implbase1.hxx:224
#define SAL_OVERRIDE
C++11 "override" feature.
Definition: types.h:391
virtual css::uno::Any queryAggregation(css::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase1.hxx:285
#define SAL_NO_VTABLE
Use this for pure virtual classes, e.g.
Definition: types.h:294
virtual css::uno::Any queryInterface(css::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase1.hxx:215
AggImplInheritanceHelper1()
Definition: implbase1.hxx:282
ImplInheritanceHelper1(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5)
Definition: implbase1.hxx:202
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase1.hxx:125
ImplInheritanceHelper1(T1 const &arg1)
Definition: implbase1.hxx:188
signed char sal_Int8
Definition: types.h:43
ImplInheritanceHelper1(T1 const &arg1, T2 const &arg2, T3 const &arg3)
Definition: implbase1.hxx:193
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
Definition: implbase1.hxx:294
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
increasing m_refCount
Definition: implbase1.hxx:121
virtual css::uno::Any queryInterface(const css::uno::Type &rType) SAL_OVERRIDE
If a delegator is set, then the delegator is queried for the demanded interface.
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
If a delegator is set, then the delegators gets released.
Implementation helper implementing interface css::lang::XTypeProvider and method XInterface::queryInt...
Definition: implbase1.hxx:73
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
decreasing m_refCount
Definition: implbase1.hxx:123
#define SAL_WARN_UNUSED
Annotate classes where a compiler should warn if an instance is unused.
Definition: types.h:587
AggImplInheritanceHelper1(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4)
Definition: implbase1.hxx:265
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
decreasing m_refCount
Implementation helper implementing interfaces css::lang::XTypeProvider and css::uno::XInterface inher...
Definition: implbase1.hxx:249
ImplInheritanceHelper1()
Definition: implbase1.hxx:214
Base class to implement a UNO object supporting weak references, i.e.
Definition: weakagg.hxx:45
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase1.hxx:161
virtual css::uno::Any queryInterface(css::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase1.hxx:283
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
If a delegator is set, then the delegators gets released.
Definition: implbase1.hxx:157
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase1.hxx:127
~ImplHelper1() SAL_NOEXCEPT
Definition: implbase1.hxx:97
Helper class for a late-initialized static aggregate, e.g.
Definition: instance.hxx:548
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase1.hxx:296
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
Definition: implbase1.hxx:222
AggImplInheritanceHelper1(T1 const &arg1, T2 const &arg2)
Definition: implbase1.hxx:258
unsigned char sal_Bool
Definition: types.h:38
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase1.hxx:89
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase1.hxx:228
virtual css::uno::Any queryAggregation(css::uno::Type const &rType) SAL_OVERRIDE
Called by the delegator or queryInterface.
Definition: implbase1.hxx:153
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase1.hxx:159
ImplInheritanceHelper1(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5, T6 const &arg6)
Definition: implbase1.hxx:209
Implementation helper implementing interfaces css::lang::XTypeProvider and css::uno::XInterface which...
Definition: implbase1.hxx:112
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase1.hxx:91
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase1.hxx:226
ImplInheritanceHelper1(T1 const &arg1, T2 const &arg2)
Definition: implbase1.hxx:190
ImplInheritanceHelper1(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4)
Definition: implbase1.hxx:197
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
Definition: implbase1.hxx:292
#define SAL_NOEXCEPT
Macro for C++11 "noexcept" vs.
Definition: types.h:416
Definition: Enterable.hxx:30
Implementation helper implementing interfaces css::lang::XTypeProvider and css::uno::XInterface which...
Definition: implbase1.hxx:144
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
If a delegator is set, then the delegators gets acquired.
Definition: implbase1.hxx:155
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
If a delegator is set, then the delegators gets acquired.
AggImplInheritanceHelper1(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5, T6 const &arg6)
Definition: implbase1.hxx:277
Base class to implement a UNO object supporting weak references, i.e.
Definition: weak.hxx:47
AggImplInheritanceHelper1(T1 const &arg1, T2 const &arg2, T3 const &arg3)
Definition: implbase1.hxx:261
AggImplInheritanceHelper1(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5)
Definition: implbase1.hxx:270
AggImplInheritanceHelper1(T1 const &arg1)
Definition: implbase1.hxx:256
Implementation helper implementing interfaces css::lang::XTypeProvider and css::uno::XInterface inher...
Definition: implbase1.hxx:181
virtual css::uno::Any queryInterface(css::uno::Type const &rType) SAL_OVERRIDE
If a delegator is set, then the delegator is queried for the demanded interface.
Definition: implbase1.hxx:151
virtual css::uno::Any queryInterface(css::uno::Type const &rType) SAL_OVERRIDE
Basic queryInterface() implementation supporting com::sun::star::uno::XWeak and com::sun::star::uno::...
Definition: implbase1.hxx:119
virtual css::uno::Any queryInterface(css::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase1.hxx:87
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase1.hxx:298