My Project
UDK 3.2.7 C/C++ API Reference
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
implbase8.hxx
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * Copyright 2000, 2010 Oracle and/or its affiliates.
7  *
8  * OpenOffice.org - a multi-platform office productivity suite
9  *
10  * This file is part of OpenOffice.org.
11  *
12  * OpenOffice.org is free software: you can redistribute it and/or modify
13  * it under the terms of the GNU Lesser General Public License version 3
14  * only, as published by the Free Software Foundation.
15  *
16  * OpenOffice.org is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  * GNU Lesser General Public License version 3 for more details
20  * (a copy is included in the LICENSE file that accompanied this code).
21  *
22  * You should have received a copy of the GNU Lesser General Public License
23  * version 3 along with OpenOffice.org. If not, see
24  * <http://www.openoffice.org/license.html>
25  * for a copy of the LGPLv3 License.
26  *
27  ************************************************************************/
28 #ifndef _CPPUHELPER_IMPLBASE8_HXX_
29 #define _CPPUHELPER_IMPLBASE8_HXX_
30 
32 #include <rtl/instance.hxx>
33 
34 namespace cppu
35 {
37 
38  struct class_data8
39  {
40  sal_Int16 m_nTypes;
41  sal_Bool m_storedTypeRefs;
42  sal_Bool m_storedId;
43  sal_Int8 m_id[ 16 ];
44  type_entry m_typeEntries[ 8 + 1 ];
45  };
46 
47  template< typename Ifc1, typename Ifc2, typename Ifc3, typename Ifc4, typename Ifc5, typename Ifc6, typename Ifc7, typename Ifc8, typename Impl >
48  struct ImplClassData8
49  {
50  class_data* operator ()()
51  {
52  static class_data8 s_cd =
53  {
54  8 +1, sal_False, sal_False,
55  { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
56  {
57  { { Ifc1::static_type }, ((sal_IntPtr)(Ifc1 *) (Impl *) 16) - 16 },
58  { { Ifc2::static_type }, ((sal_IntPtr)(Ifc2 *) (Impl *) 16) - 16 },
59  { { Ifc3::static_type }, ((sal_IntPtr)(Ifc3 *) (Impl *) 16) - 16 },
60  { { Ifc4::static_type }, ((sal_IntPtr)(Ifc4 *) (Impl *) 16) - 16 },
61  { { Ifc5::static_type }, ((sal_IntPtr)(Ifc5 *) (Impl *) 16) - 16 },
62  { { Ifc6::static_type }, ((sal_IntPtr)(Ifc6 *) (Impl *) 16) - 16 },
63  { { Ifc7::static_type }, ((sal_IntPtr)(Ifc7 *) (Impl *) 16) - 16 },
64  { { Ifc8::static_type }, ((sal_IntPtr)(Ifc8 *) (Impl *) 16) - 16 },
65  { { com::sun::star::lang::XTypeProvider::static_type }, ((sal_IntPtr)(com::sun::star::lang::XTypeProvider *) (Impl *) 16) - 16 }
66  }
67  };
68  return reinterpret_cast< class_data * >(&s_cd);
69  }
70  };
71 
73 
82  template< class Ifc1, class Ifc2, class Ifc3, class Ifc4, class Ifc5, class Ifc6, class Ifc7, class Ifc8 >
83  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE ImplHelper8
84  : public com::sun::star::lang::XTypeProvider
85  , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8
86  {
87  struct cd : public rtl::StaticAggregate< class_data, ImplClassData8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, ImplHelper8<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8> > > {};
88  public:
89  virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
90  { return ImplHelper_query( rType, cd::get(), this ); }
91  virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException)
92  { return ImplHelper_getTypes( cd::get() ); }
93  virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException)
94  { return ImplHelper_getImplementationId( cd::get() ); }
95 
96 #if !defined _MSC_VER // public -> protected changes mangled names there
97  protected:
98 #endif
99  ~ImplHelper8() throw () {}
100  };
109  template< class Ifc1, class Ifc2, class Ifc3, class Ifc4, class Ifc5, class Ifc6, class Ifc7, class Ifc8 >
110  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakImplHelper8
111  : public OWeakObject
112  , public com::sun::star::lang::XTypeProvider
113  , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8
114  {
115  struct cd : public rtl::StaticAggregate< class_data, ImplClassData8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, WeakImplHelper8<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8> > > {};
116  public:
117  virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
118  { return WeakImplHelper_query( rType, cd::get(), this, (OWeakObject *)this ); }
119  virtual void SAL_CALL acquire() throw ()
120  { OWeakObject::acquire(); }
121  virtual void SAL_CALL release() throw ()
122  { OWeakObject::release(); }
123  virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException)
124  { return WeakImplHelper_getTypes( cd::get() ); }
125  virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException)
126  { return ImplHelper_getImplementationId( cd::get() ); }
127  };
141  template< class Ifc1, class Ifc2, class Ifc3, class Ifc4, class Ifc5, class Ifc6, class Ifc7, class Ifc8 >
142  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakAggImplHelper8
143  : public OWeakAggObject
144  , public com::sun::star::lang::XTypeProvider
145  , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8
146  {
147  struct cd : public rtl::StaticAggregate< class_data, ImplClassData8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, WeakAggImplHelper8<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8> > > {};
148  public:
149  virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
150  { return OWeakAggObject::queryInterface( rType ); }
151  virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
152  { return WeakAggImplHelper_queryAgg( rType, cd::get(), this, (OWeakAggObject *)this ); }
153  virtual void SAL_CALL acquire() throw ()
155  virtual void SAL_CALL release() throw ()
157  virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException)
158  { return WeakAggImplHelper_getTypes( cd::get() ); }
159  virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException)
160  { return ImplHelper_getImplementationId( cd::get() ); }
161  };
178  template< class BaseClass, class Ifc1, class Ifc2, class Ifc3, class Ifc4, class Ifc5, class Ifc6, class Ifc7, class Ifc8 >
179  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE ImplInheritanceHelper8
180  : public BaseClass
181  , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8
182  {
183  struct cd : public rtl::StaticAggregate< class_data, ImplClassData8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, ImplInheritanceHelper8<BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8> > > {};
184  protected:
185  template< typename T1 >
186  explicit ImplInheritanceHelper8(T1 const & arg1): BaseClass(arg1) {}
187  template< typename T1, typename T2 >
188  ImplInheritanceHelper8(T1 const & arg1, T2 const & arg2):
189  BaseClass(arg1, arg2) {}
190  template< typename T1, typename T2, typename T3 >
192  T1 const & arg1, T2 const & arg2, T3 const & arg3):
193  BaseClass(arg1, arg2, arg3) {}
194  template< typename T1, typename T2, typename T3, typename T4 >
196  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4):
197  BaseClass(arg1, arg2, arg3, arg4) {}
198  template<
199  typename T1, typename T2, typename T3, typename T4, typename T5 >
201  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
202  T5 const & arg5):
203  BaseClass(arg1, arg2, arg3, arg4, arg5) {}
204  template<
205  typename T1, typename T2, typename T3, typename T4, typename T5,
206  typename T6 >
208  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
209  T5 const & arg5, T6 const & arg6):
210  BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
211  public:
213  virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
214  {
215  com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
216  if (aRet.hasValue())
217  return aRet;
218  return BaseClass::queryInterface( rType );
219  }
220  virtual void SAL_CALL acquire() throw ()
221  { BaseClass::acquire(); }
222  virtual void SAL_CALL release() throw ()
223  { BaseClass::release(); }
224  virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException)
225  { return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
226  virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException)
227  { return ImplHelper_getImplementationId( cd::get() ); }
228  };
246  template< class BaseClass, class Ifc1, class Ifc2, class Ifc3, class Ifc4, class Ifc5, class Ifc6, class Ifc7, class Ifc8 >
247  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE AggImplInheritanceHelper8
248  : public BaseClass
249  , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8
250  {
251  struct cd : public rtl::StaticAggregate< class_data, ImplClassData8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, AggImplInheritanceHelper8<BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8> > > {};
252  protected:
253  template< typename T1 >
254  explicit AggImplInheritanceHelper8(T1 const & arg1): BaseClass(arg1) {}
255  template< typename T1, typename T2 >
256  AggImplInheritanceHelper8(T1 const & arg1, T2 const & arg2):
257  BaseClass(arg1, arg2) {}
258  template< typename T1, typename T2, typename T3 >
260  T1 const & arg1, T2 const & arg2, T3 const & arg3):
261  BaseClass(arg1, arg2, arg3) {}
262  template< typename T1, typename T2, typename T3, typename T4 >
264  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4):
265  BaseClass(arg1, arg2, arg3, arg4) {}
266  template<
267  typename T1, typename T2, typename T3, typename T4, typename T5 >
269  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
270  T5 const & arg5):
271  BaseClass(arg1, arg2, arg3, arg4, arg5) {}
272  template<
273  typename T1, typename T2, typename T3, typename T4, typename T5,
274  typename T6 >
276  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
277  T5 const & arg5, T6 const & arg6):
278  BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
279  public:
281  virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
282  { return BaseClass::queryInterface( rType ); }
283  virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
284  {
285  com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
286  if (aRet.hasValue())
287  return aRet;
288  return BaseClass::queryAggregation( rType );
289  }
290  virtual void SAL_CALL acquire() throw ()
291  { BaseClass::acquire(); }
292  virtual void SAL_CALL release() throw ()
293  { BaseClass::release(); }
294  virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException)
295  { return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
296  virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException)
297  { return ImplHelper_getImplementationId( cd::get() ); }
298  };
299 }
300 
301 #endif
302 
303 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */