LibreOffice
LibreOffice 4.3 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 #ifndef INCLUDED_CPPUHELPER_IMPLBASE13_HXX
20 #define INCLUDED_CPPUHELPER_IMPLBASE13_HXX
21 
23 #include <rtl/instance.hxx>
24 
25 namespace cppu
26 {
28 
29  struct class_data13
30  {
31  sal_Int16 m_nTypes;
32  sal_Bool m_storedTypeRefs;
33  sal_Bool m_storedId;
34  sal_Int8 m_id[ 16 ];
35  type_entry m_typeEntries[ 13 + 1 ];
36  };
37 
38  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 >
39  struct ImplClassData13
40  {
41  class_data* operator ()()
42  {
43  static class_data13 s_cd =
44  {
45  13 +1, sal_False, sal_False,
46  { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
47  {
48  { { Ifc1::static_type }, ((sal_IntPtr)(Ifc1 *) (Impl *) 16) - 16 },
49  { { Ifc2::static_type }, ((sal_IntPtr)(Ifc2 *) (Impl *) 16) - 16 },
50  { { Ifc3::static_type }, ((sal_IntPtr)(Ifc3 *) (Impl *) 16) - 16 },
51  { { Ifc4::static_type }, ((sal_IntPtr)(Ifc4 *) (Impl *) 16) - 16 },
52  { { Ifc5::static_type }, ((sal_IntPtr)(Ifc5 *) (Impl *) 16) - 16 },
53  { { Ifc6::static_type }, ((sal_IntPtr)(Ifc6 *) (Impl *) 16) - 16 },
54  { { Ifc7::static_type }, ((sal_IntPtr)(Ifc7 *) (Impl *) 16) - 16 },
55  { { Ifc8::static_type }, ((sal_IntPtr)(Ifc8 *) (Impl *) 16) - 16 },
56  { { Ifc9::static_type }, ((sal_IntPtr)(Ifc9 *) (Impl *) 16) - 16 },
57  { { Ifc10::static_type }, ((sal_IntPtr)(Ifc10 *) (Impl *) 16) - 16 },
58  { { Ifc11::static_type }, ((sal_IntPtr)(Ifc11 *) (Impl *) 16) - 16 },
59  { { Ifc12::static_type }, ((sal_IntPtr)(Ifc12 *) (Impl *) 16) - 16 },
60  { { Ifc13::static_type }, ((sal_IntPtr)(Ifc13 *) (Impl *) 16) - 16 },
61  { { com::sun::star::lang::XTypeProvider::static_type }, ((sal_IntPtr)(com::sun::star::lang::XTypeProvider *) (Impl *) 16) - 16 }
62  }
63  };
64  return reinterpret_cast< class_data * >(&s_cd);
65  }
66  };
67 
69 
78  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 >
79  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE ImplHelper13
80  : public com::sun::star::lang::XTypeProvider
81  , 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
82  {
83  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> > > {};
84  public:
85  virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
86  { return ImplHelper_query( rType, cd::get(), this ); }
87  virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
88  { return ImplHelper_getTypes( cd::get() ); }
89  virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
90  { return ImplHelper_getImplementationId( cd::get() ); }
91 
92 #if !defined _MSC_VER // public -> protected changes mangled names there
93  protected:
94 #endif
95  ~ImplHelper13() throw () {}
96  };
105  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 >
106  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakImplHelper13
107  : public OWeakObject
108  , public com::sun::star::lang::XTypeProvider
109  , 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
110  {
111  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> > > {};
112  public:
113  virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
114  { return WeakImplHelper_query( rType, cd::get(), this, (OWeakObject *)this ); }
115  virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
116  { OWeakObject::acquire(); }
117  virtual void SAL_CALL release() throw () SAL_OVERRIDE
118  { OWeakObject::release(); }
119  virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
120  { return WeakImplHelper_getTypes( cd::get() ); }
121  virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
122  { return ImplHelper_getImplementationId( cd::get() ); }
123  };
137  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 >
138  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakAggImplHelper13
139  : public OWeakAggObject
140  , public com::sun::star::lang::XTypeProvider
141  , 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
142  {
143  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> > > {};
144  public:
145  virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
146  { return OWeakAggObject::queryInterface( rType ); }
147  virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
148  { return WeakAggImplHelper_queryAgg( rType, cd::get(), this, (OWeakAggObject *)this ); }
149  virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
151  virtual void SAL_CALL release() throw () SAL_OVERRIDE
153  virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
154  { return WeakAggImplHelper_getTypes( cd::get() ); }
155  virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
156  { return ImplHelper_getImplementationId( cd::get() ); }
157  };
174  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 >
175  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE ImplInheritanceHelper13
176  : public BaseClass
177  , 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
178  {
179  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> > > {};
180  protected:
181  template< typename T1 >
182  explicit ImplInheritanceHelper13(T1 const & arg1): BaseClass(arg1) {}
183  template< typename T1, typename T2 >
184  ImplInheritanceHelper13(T1 const & arg1, T2 const & arg2):
185  BaseClass(arg1, arg2) {}
186  template< typename T1, typename T2, typename T3 >
188  T1 const & arg1, T2 const & arg2, T3 const & arg3):
189  BaseClass(arg1, arg2, arg3) {}
190  template< typename T1, typename T2, typename T3, typename T4 >
192  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4):
193  BaseClass(arg1, arg2, arg3, arg4) {}
194  template<
195  typename T1, typename T2, typename T3, typename T4, typename T5 >
197  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
198  T5 const & arg5):
199  BaseClass(arg1, arg2, arg3, arg4, arg5) {}
200  template<
201  typename T1, typename T2, typename T3, typename T4, typename T5,
202  typename T6 >
204  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
205  T5 const & arg5, T6 const & arg6):
206  BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
207  public:
209  virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
210  {
211  com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
212  if (aRet.hasValue())
213  return aRet;
214  return BaseClass::queryInterface( rType );
215  }
216  virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
217  { BaseClass::acquire(); }
218  virtual void SAL_CALL release() throw () SAL_OVERRIDE
219  { BaseClass::release(); }
220  virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
221  { return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
222  virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
223  { return ImplHelper_getImplementationId( cd::get() ); }
224  };
242  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 >
243  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE AggImplInheritanceHelper13
244  : public BaseClass
245  , 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
246  {
247  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> > > {};
248  protected:
249  template< typename T1 >
250  explicit AggImplInheritanceHelper13(T1 const & arg1): BaseClass(arg1) {}
251  template< typename T1, typename T2 >
252  AggImplInheritanceHelper13(T1 const & arg1, T2 const & arg2):
253  BaseClass(arg1, arg2) {}
254  template< typename T1, typename T2, typename T3 >
256  T1 const & arg1, T2 const & arg2, T3 const & arg3):
257  BaseClass(arg1, arg2, arg3) {}
258  template< typename T1, typename T2, typename T3, typename T4 >
260  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4):
261  BaseClass(arg1, arg2, arg3, arg4) {}
262  template<
263  typename T1, typename T2, typename T3, typename T4, typename T5 >
265  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
266  T5 const & arg5):
267  BaseClass(arg1, arg2, arg3, arg4, arg5) {}
268  template<
269  typename T1, typename T2, typename T3, typename T4, typename T5,
270  typename T6 >
272  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
273  T5 const & arg5, T6 const & arg6):
274  BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
275  public:
277  virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
278  { return BaseClass::queryInterface( rType ); }
279  virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
280  {
281  com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
282  if (aRet.hasValue())
283  return aRet;
284  return BaseClass::queryAggregation( rType );
285  }
286  virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
287  { BaseClass::acquire(); }
288  virtual void SAL_CALL release() throw () SAL_OVERRIDE
289  { BaseClass::release(); }
290  virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
291  { return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
292  virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
293  { return ImplHelper_getImplementationId( cd::get() ); }
294  };
295 }
296 
297 #endif
298 
299 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
inline::com::sun::star::uno::Any queryInterface(const ::com::sun::star::uno::Type &rType, Interface1 *p1)
Compares demanded type to given template argument types.
Definition: queryinterface.hxx:39
ImplInheritanceHelper13()
Definition: implbase13.hxx:208
Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and com::sun::star:...
Definition: implbase13.hxx:243
Base class to implement an UNO object supporting weak references, i.e.
Definition: weakagg.hxx:40
virtual void release() SAL_OVERRIDE
Definition: implbase13.hxx:288
virtual com::sun::star::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase13.hxx:155
Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and com::sun::star:...
Definition: implbase13.hxx:138
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase13.hxx:220
Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and com::sun::star:...
Definition: implbase13.hxx:175
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase13.hxx:119
unsigned char sal_Bool
Definition: types.h:46
ImplInheritanceHelper13(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5)
Definition: implbase13.hxx:196
virtual void release() SAL_OVERRIDE
If a delegator is set, then the delegators gets released.
Definition: implbase13.hxx:151
C++ class representing an IDL meta type.
Definition: Type.h:55
bool hasValue() const SAL_THROW(())
Tests if any contains a value.
Definition: Any.h:150
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase13.hxx:153
virtual com::sun::star::uno::Any queryInterface(com::sun::star::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase13.hxx:209
virtual com::sun::star::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase13.hxx:222
#define sal_False
Definition: types.h:47
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase13.hxx:290
virtual com::sun::star::uno::Any queryAggregation(com::sun::star::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase13.hxx:147
virtual void release() SAL_OVERRIDE
Definition: implbase13.hxx:218
ImplInheritanceHelper13(T1 const &arg1, T2 const &arg2)
Definition: implbase13.hxx:184
virtual void acquire() SAL_OVERRIDE
Definition: implbase13.hxx:286
Template C++ class representing an IDL sequence.
Definition: unotype.hxx:33
ImplInheritanceHelper13(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5, T6 const &arg6)
Definition: implbase13.hxx:203
virtual com::sun::star::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase13.hxx:121
virtual ::com::sun::star::uno::Any queryInterface(const ::com::sun::star::uno::Type &rType) SAL_OVERRIDE
If a delegator is set, then the delegator is queried for the demanded interface.
virtual void release() SAL_OVERRIDE
decreasing m_refCount
Definition: implbase13.hxx:117
AggImplInheritanceHelper13(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5)
Definition: implbase13.hxx:264
#define SAL_OVERRIDE
C++11 "override" feature.
Definition: types.h:423
virtual com::sun::star::uno::Any queryInterface(com::sun::star::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase13.hxx:113
virtual com::sun::star::uno::Any queryInterface(com::sun::star::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase13.hxx:145
virtual com::sun::star::uno::Any queryAggregation(com::sun::star::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase13.hxx:279
virtual void acquire() SAL_OVERRIDE
increasing m_refCount
signed char sal_Int8
Definition: types.h:51
virtual com::sun::star::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase13.hxx:89
AggImplInheritanceHelper13(T1 const &arg1, T2 const &arg2, T3 const &arg3)
Definition: implbase13.hxx:255
~ImplHelper13()
Definition: implbase13.hxx:95
Definition: Enterable.hxx:26
ImplInheritanceHelper13(T1 const &arg1)
Definition: implbase13.hxx:182
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase13.hxx:87
AggImplInheritanceHelper13(T1 const &arg1)
Definition: implbase13.hxx:250
C++ class representing an IDL any.
Definition: Any.h:46
virtual com::sun::star::uno::Any queryInterface(com::sun::star::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase13.hxx:85
Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and com::sun::star:...
Definition: implbase13.hxx:106
AggImplInheritanceHelper13(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5, T6 const &arg6)
Definition: implbase13.hxx:271
virtual com::sun::star::uno::Any queryInterface(com::sun::star::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase13.hxx:277
virtual void acquire() SAL_OVERRIDE
Definition: implbase13.hxx:216
virtual void release() SAL_OVERRIDE
If a delegator is set, then the delegators gets released.
ImplInheritanceHelper13(T1 const &arg1, T2 const &arg2, T3 const &arg3)
Definition: implbase13.hxx:187
#define SAL_NO_VTABLE
Use this for pure virtual classes, e.g.
Definition: types.h:317
Base class to implement an UNO object supporting weak references, i.e.
Definition: weak.hxx:43
virtual void acquire() SAL_OVERRIDE
increasing m_refCount
Definition: implbase13.hxx:115
Helper class for a late-initialized static aggregate, e.g.
Definition: instance.hxx:542
virtual void acquire() SAL_OVERRIDE
If a delegator is set, then the delegators gets acquired.
Definition: implbase13.hxx:149
AggImplInheritanceHelper13()
Definition: implbase13.hxx:276
virtual void release() SAL_OVERRIDE
decreasing m_refCount
AggImplInheritanceHelper13(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4)
Definition: implbase13.hxx:259
virtual com::sun::star::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase13.hxx:292
Implementation helper implementing interface com::sun::star::lang::XTypeProvider and method XInterfac...
Definition: implbase13.hxx:79
AggImplInheritanceHelper13(T1 const &arg1, T2 const &arg2)
Definition: implbase13.hxx:252
ImplInheritanceHelper13(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4)
Definition: implbase13.hxx:191
virtual void acquire() SAL_OVERRIDE
If a delegator is set, then the delegators gets acquired.
Definition: types.h:391