LibreOffice
LibreOffice 4.2 SDK C/C++ API Reference
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
compbase2.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_COMPBASE2_HXX
20 #define INCLUDED_CPPUHELPER_COMPBASE2_HXX
21 
22 #include <cppuhelper/implbase2.hxx>
24 
25 namespace cppu
26 {
27 
28 // Suppress warnings about hidden functions in case any of the IfcN has
29 // functions named dispose, addEventListener, or removeEventListener:
30 #if defined __SUNPRO_CC
31 #pragma disable_warn
32 #endif
33 
48  template< class Ifc1, class Ifc2 >
49  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakComponentImplHelper2
50  : public WeakComponentImplHelperBase
51  , public ::com::sun::star::lang::XTypeProvider
52  , public Ifc1, public Ifc2
53  {
54  struct cd : public rtl::StaticAggregate< class_data, ImplClassData2 < Ifc1, Ifc2, WeakComponentImplHelper2<Ifc1, Ifc2> > > {};
55  public:
56  inline WeakComponentImplHelper2( ::osl::Mutex & rMutex ) throw ()
57  : WeakComponentImplHelperBase( rMutex )
58  {}
59  virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException)
60  { return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
61  virtual void SAL_CALL acquire() throw ()
62  { WeakComponentImplHelperBase::acquire(); }
63  virtual void SAL_CALL release() throw ()
64  { WeakComponentImplHelperBase::release(); }
65  virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException)
66  { WeakComponentImplHelperBase::dispose(); }
67  virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException)
68  { WeakComponentImplHelperBase::addEventListener(xListener); }
69  virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException)
70  { WeakComponentImplHelperBase::removeEventListener(xListener); }
71  virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException)
72  { return WeakComponentImplHelper_getTypes( cd::get() ); }
73  virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException)
74  { return ImplHelper_getImplementationId( cd::get() ); }
75  };
76 
77 #if defined __SUNPRO_CC
78 #pragma enable_warn
79 #endif
80 
90  template< class Ifc1, class Ifc2 >
91  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE PartialWeakComponentImplHelper2
92  : public WeakComponentImplHelperBase
93  , public ::com::sun::star::lang::XTypeProvider
94  , public Ifc1, public Ifc2
95  {
96  struct cd : public rtl::StaticAggregate< class_data, ImplClassData2 < Ifc1, Ifc2, PartialWeakComponentImplHelper2<Ifc1, Ifc2> > > {};
97  public:
98  inline PartialWeakComponentImplHelper2( ::osl::Mutex & rMutex ) throw ()
99  : WeakComponentImplHelperBase( rMutex )
100  {}
101  virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException)
102  { return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
103  virtual void SAL_CALL acquire() throw ()
104  { WeakComponentImplHelperBase::acquire(); }
105  virtual void SAL_CALL release() throw ()
106  { WeakComponentImplHelperBase::release(); }
107  virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException)
108  { return WeakComponentImplHelper_getTypes( cd::get() ); }
109  virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException)
110  { return ImplHelper_getImplementationId( cd::get() ); }
111  };
112 
113 
131  template< class Ifc1, class Ifc2 >
132  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakAggComponentImplHelper2
133  : public WeakAggComponentImplHelperBase
134  , public ::com::sun::star::lang::XTypeProvider
135  , public Ifc1, public Ifc2
136  {
137  struct cd : public rtl::StaticAggregate< class_data, ImplClassData2 < Ifc1, Ifc2, WeakAggComponentImplHelper2<Ifc1, Ifc2> > > {};
138  public:
139  inline WeakAggComponentImplHelper2( ::osl::Mutex & rMutex ) throw ()
140  : WeakAggComponentImplHelperBase( rMutex )
141  {}
142  virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException)
144  virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException)
145  { return WeakAggComponentImplHelper_queryAgg( rType, cd::get(), this, (WeakAggComponentImplHelperBase *)this ); }
146  virtual void SAL_CALL acquire() throw ()
147  { WeakAggComponentImplHelperBase::acquire(); }
148  virtual void SAL_CALL release() throw ()
149  { WeakAggComponentImplHelperBase::release(); }
150  virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException)
151  { return WeakAggComponentImplHelper_getTypes( cd::get() ); }
152  virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException)
153  { return ImplHelper_getImplementationId( cd::get() ); }
154  };
155 }
156 
157 #endif
158 
159 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual void addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > &xListener)
Definition: compbase2.hxx:67
virtual void release()
Definition: compbase2.hxx:105
virtual ::com::sun::star::uno::Sequence< sal_Int8 > getImplementationId()
Definition: compbase2.hxx:109
virtual void dispose()
Definition: compbase2.hxx:65
Helper class for a late-initialized static aggregate, e.g.
Definition: instance.hxx:542
virtual ::com::sun::star::uno::Any queryInterface(::com::sun::star::uno::Type const &rType)
Definition: compbase2.hxx:59
virtual ::com::sun::star::uno::Any queryAggregation(::com::sun::star::uno::Type const &rType)
Definition: compbase2.hxx:144
Implementation helper supporting com::sun::star::lang::XTypeProvider and com::sun::star::lang::XCompo...
Definition: compbase2.hxx:49
C++ class representing an IDL meta type.
Definition: Type.h:55
virtual ::com::sun::star::uno::Sequence< sal_Int8 > getImplementationId()
Definition: compbase2.hxx:152
virtual ::com::sun::star::uno::Any queryInterface(::com::sun::star::uno::Type const &rType)
Definition: compbase2.hxx:101
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
WeakAggComponentImplHelper2(::osl::Mutex &rMutex)
Definition: compbase2.hxx:139
#define SAL_NO_VTABLE
Use this for pure virtual classes, e.g.
Definition: types.h:315
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > getTypes()
Definition: compbase2.hxx:150
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > getTypes()
Definition: compbase2.hxx:71
Implementation helper supporting com::sun::star::lang::XTypeProvider and com::sun::star::lang::XCompo...
Definition: compbase2.hxx:132
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > getTypes()
Definition: compbase2.hxx:107
A mutual exclusion synchronization object.
Definition: mutex.hxx:32
virtual void release()
Definition: compbase2.hxx:148
virtual ::com::sun::star::uno::Sequence< sal_Int8 > getImplementationId()
Definition: compbase2.hxx:73
virtual ::com::sun::star::uno::Any queryInterface(::com::sun::star::uno::Type const &rType)
Definition: compbase2.hxx:142
virtual void acquire()
Definition: compbase2.hxx:61
WeakComponentImplHelper2(::osl::Mutex &rMutex)
Definition: compbase2.hxx:56
virtual void acquire()
Definition: compbase2.hxx:146
PartialWeakComponentImplHelper2(::osl::Mutex &rMutex)
Definition: compbase2.hxx:98
virtual void acquire()
Definition: compbase2.hxx:103
Same as WeakComponentImplHelper2, except doesn't implement addEventListener, removeEventListener and ...
Definition: compbase2.hxx:91
virtual void removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > &xListener)
Definition: compbase2.hxx:69
virtual void release()
Definition: compbase2.hxx:63