1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 * This file is part of LibreOffice published API.
23 #ifndef INCLUDED_CPPUHELPER_IMPLBASE12_HXX
24 #define INCLUDED_CPPUHELPER_IMPLBASE12_HXX
26 #include "cppuhelper/implbase_ex.hxx"
27 #include "rtl/instance.hxx"
28 #include "cppuhelper/weak.hxx"
29 #include "cppuhelper/weakagg.hxx"
30 #include "com/sun/star/lang/XTypeProvider.hpp"
39 sal_Bool m_storedTypeRefs
;
42 type_entry m_typeEntries
[ 12 + 1 ];
45 template< typename Ifc1
, typename Ifc2
, typename Ifc3
, typename Ifc4
, typename Ifc5
, typename Ifc6
, typename Ifc7
, typename Ifc8
, typename Ifc9
, typename Ifc10
, typename Ifc11
, typename Ifc12
, typename Impl
>
46 struct SAL_WARN_UNUSED ImplClassData12
48 class_data
* operator ()()
50 static class_data12 s_cd
=
53 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
55 CPPUHELPER_DETAIL_TYPEENTRY(Ifc1
),
56 CPPUHELPER_DETAIL_TYPEENTRY(Ifc2
),
57 CPPUHELPER_DETAIL_TYPEENTRY(Ifc3
),
58 CPPUHELPER_DETAIL_TYPEENTRY(Ifc4
),
59 CPPUHELPER_DETAIL_TYPEENTRY(Ifc5
),
60 CPPUHELPER_DETAIL_TYPEENTRY(Ifc6
),
61 CPPUHELPER_DETAIL_TYPEENTRY(Ifc7
),
62 CPPUHELPER_DETAIL_TYPEENTRY(Ifc8
),
63 CPPUHELPER_DETAIL_TYPEENTRY(Ifc9
),
64 CPPUHELPER_DETAIL_TYPEENTRY(Ifc10
),
65 CPPUHELPER_DETAIL_TYPEENTRY(Ifc11
),
66 CPPUHELPER_DETAIL_TYPEENTRY(Ifc12
),
67 CPPUHELPER_DETAIL_TYPEENTRY(css::lang::XTypeProvider
)
70 return reinterpret_cast< class_data
* >(&s_cd
);
76 /** Implementation helper implementing interface css::lang::XTypeProvider
77 and method XInterface::queryInterface(), but no reference counting.
80 Inherit from this class giving your interface(s) to be implemented as template argument(s).
81 Your sub class defines method implementations for these interface(s) including acquire()/
82 release() and delegates incoming queryInterface() calls to this base class.
84 template< class Ifc1
, class Ifc2
, class Ifc3
, class Ifc4
, class Ifc5
, class Ifc6
, class Ifc7
, class Ifc8
, class Ifc9
, class Ifc10
, class Ifc11
, class Ifc12
>
85 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE ImplHelper12
86 : public css::lang::XTypeProvider
87 , public Ifc1
, public Ifc2
, public Ifc3
, public Ifc4
, public Ifc5
, public Ifc6
, public Ifc7
, public Ifc8
, public Ifc9
, public Ifc10
, public Ifc11
, public Ifc12
89 struct cd
: public rtl::StaticAggregate
< class_data
, ImplClassData12
< Ifc1
, Ifc2
, Ifc3
, Ifc4
, Ifc5
, Ifc6
, Ifc7
, Ifc8
, Ifc9
, Ifc10
, Ifc11
, Ifc12
, ImplHelper12
<Ifc1
, Ifc2
, Ifc3
, Ifc4
, Ifc5
, Ifc6
, Ifc7
, Ifc8
, Ifc9
, Ifc10
, Ifc11
, Ifc12
> > > {};
91 #if defined LIBO_INTERNAL_ONLY
92 ImplHelper12() = default;
93 ImplHelper12(ImplHelper12
const &) = default;
94 ImplHelper12(ImplHelper12
&&) = default;
95 ImplHelper12
& operator =(ImplHelper12
const &) = default;
96 ImplHelper12
& operator =(ImplHelper12
&&) = default;
99 virtual css::uno::Any SAL_CALL
queryInterface( css::uno::Type
const & rType
) SAL_OVERRIDE
100 { return ImplHelper_query( rType
, cd::get(), this ); }
101 virtual css::uno::Sequence
< css::uno::Type
> SAL_CALL
getTypes() SAL_OVERRIDE
102 { return ImplHelper_getTypes( cd::get() ); }
103 virtual css::uno::Sequence
< sal_Int8
> SAL_CALL
getImplementationId() SAL_OVERRIDE
104 { return ImplHelper_getImplementationId( cd::get() ); }
106 #if !defined _MSC_VER // public -> protected changes mangled names there
109 ~ImplHelper12() SAL_NOEXCEPT
{}
111 /** Implementation helper implementing interfaces css::lang::XTypeProvider and
112 css::uno::XInterface which supports weak mechanism to be held weakly
113 (supporting css::uno::XWeak through ::cppu::OWeakObject).
116 Inherit from this class giving your interface(s) to be implemented as template argument(s).
117 Your sub class defines method implementations for these interface(s).
119 template< class Ifc1
, class Ifc2
, class Ifc3
, class Ifc4
, class Ifc5
, class Ifc6
, class Ifc7
, class Ifc8
, class Ifc9
, class Ifc10
, class Ifc11
, class Ifc12
>
120 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakImplHelper12
122 , public css::lang::XTypeProvider
123 , public Ifc1
, public Ifc2
, public Ifc3
, public Ifc4
, public Ifc5
, public Ifc6
, public Ifc7
, public Ifc8
, public Ifc9
, public Ifc10
, public Ifc11
, public Ifc12
125 struct cd
: public rtl::StaticAggregate
< class_data
, ImplClassData12
< Ifc1
, Ifc2
, Ifc3
, Ifc4
, Ifc5
, Ifc6
, Ifc7
, Ifc8
, Ifc9
, Ifc10
, Ifc11
, Ifc12
, WeakImplHelper12
<Ifc1
, Ifc2
, Ifc3
, Ifc4
, Ifc5
, Ifc6
, Ifc7
, Ifc8
, Ifc9
, Ifc10
, Ifc11
, Ifc12
> > > {};
127 virtual css::uno::Any SAL_CALL
queryInterface( css::uno::Type
const & rType
) SAL_OVERRIDE
128 { return WeakImplHelper_query( rType
, cd::get(), this, static_cast<OWeakObject
*>(this) ); }
129 virtual void SAL_CALL
acquire() SAL_NOEXCEPT SAL_OVERRIDE
130 { OWeakObject::acquire(); }
131 virtual void SAL_CALL
release() SAL_NOEXCEPT SAL_OVERRIDE
132 { OWeakObject::release(); }
133 virtual css::uno::Sequence
< css::uno::Type
> SAL_CALL
getTypes() SAL_OVERRIDE
134 { return WeakImplHelper_getTypes( cd::get() ); }
135 virtual css::uno::Sequence
< sal_Int8
> SAL_CALL
getImplementationId() SAL_OVERRIDE
136 { return ImplHelper_getImplementationId( cd::get() ); }
138 /** Implementation helper implementing interfaces css::lang::XTypeProvider and
139 css::uno::XInterface which supports weak mechanism to be held weakly
140 (supporting css::uno::XWeak through ::cppu::OWeakAggObject).
141 In addition, it supports also aggregation meaning object of this class can be aggregated
142 (css::uno::XAggregation through ::cppu::OWeakAggObject).
143 If a delegator is set (this object is aggregated), then incoming queryInterface()
144 calls are delegated to the delegator object. If the delegator does not support the
145 demanded interface, it calls queryAggregation() on its aggregated objects.
148 Inherit from this class giving your interface(s) to be implemented as template argument(s).
149 Your sub class defines method implementations for these interface(s).
151 template< class Ifc1
, class Ifc2
, class Ifc3
, class Ifc4
, class Ifc5
, class Ifc6
, class Ifc7
, class Ifc8
, class Ifc9
, class Ifc10
, class Ifc11
, class Ifc12
>
152 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakAggImplHelper12
153 : public OWeakAggObject
154 , public css::lang::XTypeProvider
155 , public Ifc1
, public Ifc2
, public Ifc3
, public Ifc4
, public Ifc5
, public Ifc6
, public Ifc7
, public Ifc8
, public Ifc9
, public Ifc10
, public Ifc11
, public Ifc12
157 struct cd
: public rtl::StaticAggregate
< class_data
, ImplClassData12
< Ifc1
, Ifc2
, Ifc3
, Ifc4
, Ifc5
, Ifc6
, Ifc7
, Ifc8
, Ifc9
, Ifc10
, Ifc11
, Ifc12
, WeakAggImplHelper12
<Ifc1
, Ifc2
, Ifc3
, Ifc4
, Ifc5
, Ifc6
, Ifc7
, Ifc8
, Ifc9
, Ifc10
, Ifc11
, Ifc12
> > > {};
159 virtual css::uno::Any SAL_CALL
queryInterface( css::uno::Type
const & rType
) SAL_OVERRIDE
160 { return OWeakAggObject::queryInterface( rType
); }
161 virtual css::uno::Any SAL_CALL
queryAggregation( css::uno::Type
const & rType
) SAL_OVERRIDE
162 { return WeakAggImplHelper_queryAgg( rType
, cd::get(), this, static_cast<OWeakAggObject
*>(this) ); }
163 virtual void SAL_CALL
acquire() SAL_NOEXCEPT SAL_OVERRIDE
164 { OWeakAggObject::acquire(); }
165 virtual void SAL_CALL
release() SAL_NOEXCEPT SAL_OVERRIDE
166 { OWeakAggObject::release(); }
167 virtual css::uno::Sequence
< css::uno::Type
> SAL_CALL
getTypes() SAL_OVERRIDE
168 { return WeakAggImplHelper_getTypes( cd::get() ); }
169 virtual css::uno::Sequence
< sal_Int8
> SAL_CALL
getImplementationId() SAL_OVERRIDE
170 { return ImplHelper_getImplementationId( cd::get() ); }
172 /** Implementation helper implementing interfaces css::lang::XTypeProvider and
173 css::uno::XInterface inheriting from a BaseClass.
174 All acquire() and release() calls are delegated to the BaseClass. Upon queryInterface(),
175 if a demanded interface is not supported by this class directly, the request is
176 delegated to the BaseClass.
179 The BaseClass has to be complete in a sense, that css::uno::XInterface
180 and css::lang::XTypeProvider are implemented properly. The
181 BaseClass must have at least one ctor that can be called with six or
182 fewer arguments, of which none is of non-const reference type.
185 Inherit from this class giving your additional interface(s) to be implemented as
186 template argument(s). Your sub class defines method implementations for these interface(s).
188 template< class BaseClass
, class Ifc1
, class Ifc2
, class Ifc3
, class Ifc4
, class Ifc5
, class Ifc6
, class Ifc7
, class Ifc8
, class Ifc9
, class Ifc10
, class Ifc11
, class Ifc12
>
189 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE ImplInheritanceHelper12
191 , public Ifc1
, public Ifc2
, public Ifc3
, public Ifc4
, public Ifc5
, public Ifc6
, public Ifc7
, public Ifc8
, public Ifc9
, public Ifc10
, public Ifc11
, public Ifc12
193 struct cd
: public rtl::StaticAggregate
< class_data
, ImplClassData12
< Ifc1
, Ifc2
, Ifc3
, Ifc4
, Ifc5
, Ifc6
, Ifc7
, Ifc8
, Ifc9
, Ifc10
, Ifc11
, Ifc12
, ImplInheritanceHelper12
<BaseClass
, Ifc1
, Ifc2
, Ifc3
, Ifc4
, Ifc5
, Ifc6
, Ifc7
, Ifc8
, Ifc9
, Ifc10
, Ifc11
, Ifc12
> > > {};
195 template< typename T1
>
196 explicit ImplInheritanceHelper12(T1
const & arg1
): BaseClass(arg1
) {}
197 template< typename T1
, typename T2
>
198 ImplInheritanceHelper12(T1
const & arg1
, T2
const & arg2
):
199 BaseClass(arg1
, arg2
) {}
200 template< typename T1
, typename T2
, typename T3
>
201 ImplInheritanceHelper12(
202 T1
const & arg1
, T2
const & arg2
, T3
const & arg3
):
203 BaseClass(arg1
, arg2
, arg3
) {}
204 template< typename T1
, typename T2
, typename T3
, typename T4
>
205 ImplInheritanceHelper12(
206 T1
const & arg1
, T2
const & arg2
, T3
const & arg3
, T4
const & arg4
):
207 BaseClass(arg1
, arg2
, arg3
, arg4
) {}
209 typename T1
, typename T2
, typename T3
, typename T4
, typename T5
>
210 ImplInheritanceHelper12(
211 T1
const & arg1
, T2
const & arg2
, T3
const & arg3
, T4
const & arg4
,
213 BaseClass(arg1
, arg2
, arg3
, arg4
, arg5
) {}
215 typename T1
, typename T2
, typename T3
, typename T4
, typename T5
,
217 ImplInheritanceHelper12(
218 T1
const & arg1
, T2
const & arg2
, T3
const & arg3
, T4
const & arg4
,
219 T5
const & arg5
, T6
const & arg6
):
220 BaseClass(arg1
, arg2
, arg3
, arg4
, arg5
, arg6
) {}
222 ImplInheritanceHelper12() {}
223 virtual css::uno::Any SAL_CALL
queryInterface( css::uno::Type
const & rType
) SAL_OVERRIDE
225 css::uno::Any
aRet( ImplHelper_queryNoXInterface( rType
, cd::get(), this ) );
228 return BaseClass::queryInterface( rType
);
230 virtual void SAL_CALL
acquire() SAL_NOEXCEPT SAL_OVERRIDE
231 { BaseClass::acquire(); }
232 virtual void SAL_CALL
release() SAL_NOEXCEPT SAL_OVERRIDE
233 { BaseClass::release(); }
234 virtual css::uno::Sequence
< css::uno::Type
> SAL_CALL
getTypes() SAL_OVERRIDE
235 { return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
236 virtual css::uno::Sequence
< sal_Int8
> SAL_CALL
getImplementationId() SAL_OVERRIDE
237 { return ImplHelper_getImplementationId( cd::get() ); }
239 /** Implementation helper implementing interfaces css::lang::XTypeProvider and
240 css::uno::XInterface inheriting from a BaseClass.
241 All acquire(), release() and queryInterface() calls are delegated to the BaseClass.
242 Upon queryAggregation(), if a demanded interface is not supported by this class directly,
243 the request is delegated to the BaseClass.
246 The BaseClass has to be complete in a sense, that css::uno::XInterface,
247 css::uno::XAggregation and css::lang::XTypeProvider
248 are implemented properly. The BaseClass must have at least one ctor
249 that can be called with six or fewer arguments, of which none is of
250 non-const reference type.
253 Inherit from this class giving your additional interface(s) to be implemented as
254 template argument(s). Your sub class defines method implementations for these interface(s).
256 template< class BaseClass
, class Ifc1
, class Ifc2
, class Ifc3
, class Ifc4
, class Ifc5
, class Ifc6
, class Ifc7
, class Ifc8
, class Ifc9
, class Ifc10
, class Ifc11
, class Ifc12
>
257 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE AggImplInheritanceHelper12
259 , public Ifc1
, public Ifc2
, public Ifc3
, public Ifc4
, public Ifc5
, public Ifc6
, public Ifc7
, public Ifc8
, public Ifc9
, public Ifc10
, public Ifc11
, public Ifc12
261 struct cd
: public rtl::StaticAggregate
< class_data
, ImplClassData12
< Ifc1
, Ifc2
, Ifc3
, Ifc4
, Ifc5
, Ifc6
, Ifc7
, Ifc8
, Ifc9
, Ifc10
, Ifc11
, Ifc12
, AggImplInheritanceHelper12
<BaseClass
, Ifc1
, Ifc2
, Ifc3
, Ifc4
, Ifc5
, Ifc6
, Ifc7
, Ifc8
, Ifc9
, Ifc10
, Ifc11
, Ifc12
> > > {};
263 template< typename T1
>
264 explicit AggImplInheritanceHelper12(T1
const & arg1
): BaseClass(arg1
) {}
265 template< typename T1
, typename T2
>
266 AggImplInheritanceHelper12(T1
const & arg1
, T2
const & arg2
):
267 BaseClass(arg1
, arg2
) {}
268 template< typename T1
, typename T2
, typename T3
>
269 AggImplInheritanceHelper12(
270 T1
const & arg1
, T2
const & arg2
, T3
const & arg3
):
271 BaseClass(arg1
, arg2
, arg3
) {}
272 template< typename T1
, typename T2
, typename T3
, typename T4
>
273 AggImplInheritanceHelper12(
274 T1
const & arg1
, T2
const & arg2
, T3
const & arg3
, T4
const & arg4
):
275 BaseClass(arg1
, arg2
, arg3
, arg4
) {}
277 typename T1
, typename T2
, typename T3
, typename T4
, typename T5
>
278 AggImplInheritanceHelper12(
279 T1
const & arg1
, T2
const & arg2
, T3
const & arg3
, T4
const & arg4
,
281 BaseClass(arg1
, arg2
, arg3
, arg4
, arg5
) {}
283 typename T1
, typename T2
, typename T3
, typename T4
, typename T5
,
285 AggImplInheritanceHelper12(
286 T1
const & arg1
, T2
const & arg2
, T3
const & arg3
, T4
const & arg4
,
287 T5
const & arg5
, T6
const & arg6
):
288 BaseClass(arg1
, arg2
, arg3
, arg4
, arg5
, arg6
) {}
290 AggImplInheritanceHelper12() {}
291 virtual css::uno::Any SAL_CALL
queryInterface( css::uno::Type
const & rType
) SAL_OVERRIDE
292 { return BaseClass::queryInterface( rType
); }
293 virtual css::uno::Any SAL_CALL
queryAggregation( css::uno::Type
const & rType
) SAL_OVERRIDE
295 css::uno::Any
aRet( ImplHelper_queryNoXInterface( rType
, cd::get(), this ) );
298 return BaseClass::queryAggregation( rType
);
300 virtual void SAL_CALL
acquire() SAL_NOEXCEPT SAL_OVERRIDE
301 { BaseClass::acquire(); }
302 virtual void SAL_CALL
release() SAL_NOEXCEPT SAL_OVERRIDE
303 { BaseClass::release(); }
304 virtual css::uno::Sequence
< css::uno::Type
> SAL_CALL
getTypes() SAL_OVERRIDE
305 { return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
306 virtual css::uno::Sequence
< sal_Int8
> SAL_CALL
getImplementationId() SAL_OVERRIDE
307 { return ImplHelper_getImplementationId( cd::get() ); }
313 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */