LibreOffice
LibreOffice 7.4 SDK C/C++ API Reference
implbase13.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 
20 /*
21  * This file is part of LibreOffice published API.
22  */
23 #ifndef INCLUDED_CPPUHELPER_IMPLBASE13_HXX
24 #define INCLUDED_CPPUHELPER_IMPLBASE13_HXX
25 
27 #include "rtl/instance.hxx"
28 #include "cppuhelper/weak.hxx"
29 #include "cppuhelper/weakagg.hxx"
30 #include "com/sun/star/lang/XTypeProvider.hpp"
31 
32 namespace cppu
33 {
35 
36  struct class_data13
37  {
38  sal_Int16 m_nTypes;
39  sal_Bool m_storedTypeRefs;
40  sal_Bool m_storedId;
41  sal_Int8 m_id[ 16 ];
42  type_entry m_typeEntries[ 13 + 1 ];
43  };
44 
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 Ifc13, typename Impl >
46  struct SAL_WARN_UNUSED ImplClassData13
47  {
48  class_data* operator ()()
49  {
50  static class_data13 s_cd =
51  {
52  13 +1, false, false,
53  { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
54  {
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(Ifc13),
68  CPPUHELPER_DETAIL_TYPEENTRY(css::lang::XTypeProvider)
69  }
70  };
71  return reinterpret_cast< class_data * >(&s_cd);
72  }
73  };
74 
76 
85  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, class Ifc13 >
86  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE ImplHelper13
87  : public css::lang::XTypeProvider
88  , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8, public Ifc9, public Ifc10, public Ifc11, public Ifc12, public Ifc13
89  {
90  struct cd : public rtl::StaticAggregate< class_data, ImplClassData13< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13, ImplHelper13<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13> > > {};
91  public:
92 #if defined LIBO_INTERNAL_ONLY
93  ImplHelper13() = default;
94  ImplHelper13(ImplHelper13 const &) = default;
95  ImplHelper13(ImplHelper13 &&) = default;
96  ImplHelper13 & operator =(ImplHelper13 const &) = default;
97  ImplHelper13 & operator =(ImplHelper13 &&) = default;
98 #endif
99 
100  virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
101  { return ImplHelper_query( rType, cd::get(), this ); }
102  virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE
103  { return ImplHelper_getTypes( cd::get() ); }
104  virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() SAL_OVERRIDE
105  { return ImplHelper_getImplementationId( cd::get() ); }
106 
107 #if !defined _MSC_VER // public -> protected changes mangled names there
108  protected:
109 #elif defined __clang__
110 #pragma clang diagnostic push
111 #pragma clang diagnostic ignored "-Wnon-virtual-dtor"
112 #endif
114 #if defined _MSC_VER && defined __clang__
115 #pragma clang diagnostic pop
116 #endif
117  };
126  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, class Ifc13 >
127  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakImplHelper13
128  : public OWeakObject
129  , public css::lang::XTypeProvider
130  , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8, public Ifc9, public Ifc10, public Ifc11, public Ifc12, public Ifc13
131  {
132  struct cd : public rtl::StaticAggregate< class_data, ImplClassData13< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13, WeakImplHelper13<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13> > > {};
133  public:
134  virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
135  { return WeakImplHelper_query( rType, cd::get(), this, static_cast<OWeakObject *>(this) ); }
136  virtual void SAL_CALL acquire() SAL_NOEXCEPT SAL_OVERRIDE
137  { OWeakObject::acquire(); }
138  virtual void SAL_CALL release() SAL_NOEXCEPT SAL_OVERRIDE
139  { OWeakObject::release(); }
140  virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE
141  { return WeakImplHelper_getTypes( cd::get() ); }
142  virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() SAL_OVERRIDE
143  { return ImplHelper_getImplementationId( cd::get() ); }
144  };
158  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, class Ifc13 >
159  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakAggImplHelper13
160  : public OWeakAggObject
161  , public css::lang::XTypeProvider
162  , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8, public Ifc9, public Ifc10, public Ifc11, public Ifc12, public Ifc13
163  {
164  struct cd : public rtl::StaticAggregate< class_data, ImplClassData13< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13, WeakAggImplHelper13<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13> > > {};
165  public:
166  virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
167  { return OWeakAggObject::queryInterface( rType ); }
168  virtual css::uno::Any SAL_CALL queryAggregation( css::uno::Type const & rType ) SAL_OVERRIDE
169  { return WeakAggImplHelper_queryAgg( rType, cd::get(), this, static_cast<OWeakAggObject *>(this) ); }
170  virtual void SAL_CALL acquire() SAL_NOEXCEPT SAL_OVERRIDE
172  virtual void SAL_CALL release() SAL_NOEXCEPT SAL_OVERRIDE
174  virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE
175  { return WeakAggImplHelper_getTypes( cd::get() ); }
176  virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() SAL_OVERRIDE
177  { return ImplHelper_getImplementationId( cd::get() ); }
178  };
195  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, class Ifc13 >
196  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE ImplInheritanceHelper13
197  : public BaseClass
198  , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8, public Ifc9, public Ifc10, public Ifc11, public Ifc12, public Ifc13
199  {
200  struct cd : public rtl::StaticAggregate< class_data, ImplClassData13< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13, ImplInheritanceHelper13<BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13> > > {};
201  protected:
202  template< typename T1 >
203  explicit ImplInheritanceHelper13(T1 const & arg1): BaseClass(arg1) {}
204  template< typename T1, typename T2 >
205  ImplInheritanceHelper13(T1 const & arg1, T2 const & arg2):
206  BaseClass(arg1, arg2) {}
207  template< typename T1, typename T2, typename T3 >
209  T1 const & arg1, T2 const & arg2, T3 const & arg3):
210  BaseClass(arg1, arg2, arg3) {}
211  template< typename T1, typename T2, typename T3, typename T4 >
213  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4):
214  BaseClass(arg1, arg2, arg3, arg4) {}
215  template<
216  typename T1, typename T2, typename T3, typename T4, typename T5 >
218  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
219  T5 const & arg5):
220  BaseClass(arg1, arg2, arg3, arg4, arg5) {}
221  template<
222  typename T1, typename T2, typename T3, typename T4, typename T5,
223  typename T6 >
225  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
226  T5 const & arg5, T6 const & arg6):
227  BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
228  public:
230  virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
231  {
232  css::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
233  if (aRet.hasValue())
234  return aRet;
235  return BaseClass::queryInterface( rType );
236  }
237  virtual void SAL_CALL acquire() SAL_NOEXCEPT SAL_OVERRIDE
238  { BaseClass::acquire(); }
239  virtual void SAL_CALL release() SAL_NOEXCEPT SAL_OVERRIDE
240  { BaseClass::release(); }
241  virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE
242  { return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
243  virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() SAL_OVERRIDE
244  { return ImplHelper_getImplementationId( cd::get() ); }
245  };
263  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, class Ifc13 >
264  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE AggImplInheritanceHelper13
265  : public BaseClass
266  , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8, public Ifc9, public Ifc10, public Ifc11, public Ifc12, public Ifc13
267  {
268  struct cd : public rtl::StaticAggregate< class_data, ImplClassData13< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13, AggImplInheritanceHelper13<BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13> > > {};
269  protected:
270  template< typename T1 >
271  explicit AggImplInheritanceHelper13(T1 const & arg1): BaseClass(arg1) {}
272  template< typename T1, typename T2 >
273  AggImplInheritanceHelper13(T1 const & arg1, T2 const & arg2):
274  BaseClass(arg1, arg2) {}
275  template< typename T1, typename T2, typename T3 >
277  T1 const & arg1, T2 const & arg2, T3 const & arg3):
278  BaseClass(arg1, arg2, arg3) {}
279  template< typename T1, typename T2, typename T3, typename T4 >
281  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4):
282  BaseClass(arg1, arg2, arg3, arg4) {}
283  template<
284  typename T1, typename T2, typename T3, typename T4, typename T5 >
286  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
287  T5 const & arg5):
288  BaseClass(arg1, arg2, arg3, arg4, arg5) {}
289  template<
290  typename T1, typename T2, typename T3, typename T4, typename T5,
291  typename T6 >
293  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
294  T5 const & arg5, T6 const & arg6):
295  BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
296  public:
298  virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
299  { return BaseClass::queryInterface( rType ); }
300  virtual css::uno::Any SAL_CALL queryAggregation( css::uno::Type const & rType ) SAL_OVERRIDE
301  {
302  css::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
303  if (aRet.hasValue())
304  return aRet;
305  return BaseClass::queryAggregation( rType );
306  }
307  virtual void SAL_CALL acquire() SAL_NOEXCEPT SAL_OVERRIDE
308  { BaseClass::acquire(); }
309  virtual void SAL_CALL release() SAL_NOEXCEPT SAL_OVERRIDE
310  { BaseClass::release(); }
311  virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE
312  { return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
313  virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() SAL_OVERRIDE
314  { return ImplHelper_getImplementationId( cd::get() ); }
315  };
316 }
317 
318 #endif
319 
320 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
#define SAL_NOEXCEPT
Macro for C++11 "noexcept" vs.
Definition: types.h:416
#define SAL_NO_VTABLE
Use this for pure virtual classes, e.g.
Definition: types.h:294
unsigned char sal_Bool
Definition: types.h:38
#define SAL_OVERRIDE
C++11 "override" feature.
Definition: types.h:391
signed char sal_Int8
Definition: types.h:43
#define SAL_WARN_UNUSED
Annotate classes where a compiler should warn if an instance is unused.
Definition: types.h:587
Definition: Enterable.hxx:31
css::uno::Any queryInterface(const css::uno::Type &rType, Interface1 *p1)
Compares demanded type to given template argument types.
Definition: queryinterface.hxx:43
Helper class for a late-initialized static aggregate, e.g.
Definition: instance.hxx:548
Implementation helper implementing interface css::lang::XTypeProvider and method XInterface::queryInt...
Definition: implbase13.hxx:89
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase13.hxx:102
~ImplHelper13() SAL_NOEXCEPT
Definition: implbase13.hxx:113
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase13.hxx:104
virtual css::uno::Any queryInterface(css::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase13.hxx:100
Implementation helper implementing interfaces css::lang::XTypeProvider and css::uno::XInterface which...
Definition: implbase13.hxx:131
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase13.hxx:142
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase13.hxx:140
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
increasing m_refCount
Definition: implbase13.hxx:136
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: implbase13.hxx:134
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
decreasing m_refCount
Definition: implbase13.hxx:138
Implementation helper implementing interfaces css::lang::XTypeProvider and css::uno::XInterface which...
Definition: implbase13.hxx:163
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: implbase13.hxx:166
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
If a delegator is set, then the delegators gets acquired.
Definition: implbase13.hxx:170
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase13.hxx:174
virtual css::uno::Any queryAggregation(css::uno::Type const &rType) SAL_OVERRIDE
Called by the delegator or queryInterface.
Definition: implbase13.hxx:168
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase13.hxx:176
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
If a delegator is set, then the delegators gets released.
Definition: implbase13.hxx:172
Implementation helper implementing interfaces css::lang::XTypeProvider and css::uno::XInterface inher...
Definition: implbase13.hxx:199
ImplInheritanceHelper13(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5, T6 const &arg6)
Definition: implbase13.hxx:224
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase13.hxx:243
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase13.hxx:241
ImplInheritanceHelper13()
Definition: implbase13.hxx:229
ImplInheritanceHelper13(T1 const &arg1, T2 const &arg2)
Definition: implbase13.hxx:205
ImplInheritanceHelper13(T1 const &arg1)
Definition: implbase13.hxx:203
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
Definition: implbase13.hxx:239
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
Definition: implbase13.hxx:237
ImplInheritanceHelper13(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5)
Definition: implbase13.hxx:217
virtual css::uno::Any queryInterface(css::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase13.hxx:230
ImplInheritanceHelper13(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4)
Definition: implbase13.hxx:212
ImplInheritanceHelper13(T1 const &arg1, T2 const &arg2, T3 const &arg3)
Definition: implbase13.hxx:208
Implementation helper implementing interfaces css::lang::XTypeProvider and css::uno::XInterface inher...
Definition: implbase13.hxx:267
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
Definition: implbase13.hxx:307
AggImplInheritanceHelper13(T1 const &arg1, T2 const &arg2)
Definition: implbase13.hxx:273
virtual css::uno::Any queryAggregation(css::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase13.hxx:300
AggImplInheritanceHelper13(T1 const &arg1)
Definition: implbase13.hxx:271
AggImplInheritanceHelper13(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4)
Definition: implbase13.hxx:280
AggImplInheritanceHelper13(T1 const &arg1, T2 const &arg2, T3 const &arg3)
Definition: implbase13.hxx:276
AggImplInheritanceHelper13()
Definition: implbase13.hxx:297
AggImplInheritanceHelper13(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5)
Definition: implbase13.hxx:285
AggImplInheritanceHelper13(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5, T6 const &arg6)
Definition: implbase13.hxx:292
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
Definition: implbase13.hxx:309
virtual css::uno::Any queryInterface(css::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase13.hxx:298
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase13.hxx:311
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase13.hxx:313
Base class to implement a UNO object supporting weak references, i.e.
Definition: weak.hxx:48
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
increasing m_refCount
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
decreasing m_refCount
Base class to implement a UNO object supporting weak references, i.e.
Definition: weakagg.hxx:48
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
If a delegator is set, then the delegators gets acquired.
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.