Line data Source code
1 : #ifndef INCLUDED_INTERFACE2B_HPP
2 : #define INCLUDED_INTERFACE2B_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include "Interface2b.hdl"
7 :
8 : #include "com/sun/star/uno/RuntimeException.hpp"
9 : #include "Interface2a.hpp"
10 : #include "com/sun/star/uno/Reference.hxx"
11 : #include "com/sun/star/uno/Type.hxx"
12 : #include "cppu/unotype.hxx"
13 : #include "osl/mutex.hxx"
14 : #include "rtl/instance.hxx"
15 :
16 : namespace detail {
17 :
18 : struct theInterface2bType : public rtl::StaticWithInit< ::com::sun::star::uno::Type *, theInterface2bType >
19 : {
20 1 : ::com::sun::star::uno::Type * operator()() const
21 : {
22 1 : ::rtl::OUString sTypeName( "Interface2b" );
23 :
24 : // Start inline typedescription generation
25 1 : typelib_InterfaceTypeDescription * pTD = 0;
26 :
27 : typelib_TypeDescriptionReference * aSuperTypes[1];
28 1 : aSuperTypes[0] = ::cppu::UnoType< ::com::sun::star::uno::Reference< Interface2a > >::get().getTypeLibType();
29 :
30 : typelib_typedescription_newMIInterface(
31 : &pTD,
32 : sTypeName.pData, 0x00000000, 0x0000, 0x0000, 0x00000000, 0x00000000,
33 : 1, aSuperTypes,
34 : 0,
35 1 : 0 );
36 :
37 1 : typelib_typedescription_register( (typelib_TypeDescription**)&pTD );
38 1 : typelib_typedescription_release( (typelib_TypeDescription*)pTD );
39 :
40 1 : return new ::com::sun::star::uno::Type( ::com::sun::star::uno::TypeClass_INTERFACE, sTypeName ); // leaked
41 : }
42 : };
43 :
44 : }
45 :
46 2 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER Interface2b const *) {
47 2 : const ::com::sun::star::uno::Type &rRet = *detail::theInterface2bType::get();
48 : // End inline typedescription generation
49 : static bool bInitStarted = false;
50 2 : if (!bInitStarted)
51 : {
52 1 : ::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
53 1 : if (!bInitStarted)
54 : {
55 : OSL_DOUBLE_CHECKED_LOCKING_MEMORY_BARRIER();
56 1 : bInitStarted = true;
57 1 : ::cppu::UnoType< css::uno::RuntimeException >::get();
58 1 : }
59 : }
60 : else
61 : {
62 : OSL_DOUBLE_CHECKED_LOCKING_MEMORY_BARRIER();
63 : }
64 2 : return rRet;
65 : }
66 :
67 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(SAL_UNUSED_PARAMETER ::com::sun::star::uno::Reference< Interface2b > const *) SAL_THROW(()) {
68 : return ::cppu::UnoType< ::com::sun::star::uno::Reference< Interface2b > >::get();
69 : }
70 :
71 : ::com::sun::star::uno::Type const & Interface2b::static_type(SAL_UNUSED_PARAMETER void *) {
72 : return ::getCppuType(static_cast< ::com::sun::star::uno::Reference< Interface2b > * >(0));
73 : }
74 :
75 : #endif // INCLUDED_INTERFACE2B_HPP
|