Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_UNO_XUNLOADINGPREFERENCE_HPP
2 : #define INCLUDED_COM_SUN_STAR_UNO_XUNLOADINGPREFERENCE_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/uno/XUnloadingPreference.hdl"
7 :
8 : #include "com/sun/star/uno/XInterface.hpp"
9 : #include "com/sun/star/uno/RuntimeException.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 : #include "sal/types.h"
16 :
17 : namespace com { namespace sun { namespace star { namespace uno { namespace detail {
18 :
19 : struct theXUnloadingPreferenceType : public rtl::StaticWithInit< ::com::sun::star::uno::Type *, theXUnloadingPreferenceType >
20 : {
21 0 : ::com::sun::star::uno::Type * operator()() const
22 : {
23 0 : ::rtl::OUString sTypeName( "com.sun.star.uno.XUnloadingPreference" );
24 :
25 : // Start inline typedescription generation
26 0 : typelib_InterfaceTypeDescription * pTD = 0;
27 :
28 : typelib_TypeDescriptionReference * aSuperTypes[1];
29 0 : aSuperTypes[0] = ::cppu::UnoType< ::com::sun::star::uno::Reference< css::uno::XInterface > >::get().getTypeLibType();
30 0 : typelib_TypeDescriptionReference * pMembers[1] = { 0 };
31 0 : ::rtl::OUString sMethodName0( "com.sun.star.uno.XUnloadingPreference::releaseOnNotification" );
32 : typelib_typedescriptionreference_new( &pMembers[0],
33 : (typelib_TypeClass)::com::sun::star::uno::TypeClass_INTERFACE_METHOD,
34 0 : sMethodName0.pData );
35 :
36 : typelib_typedescription_newMIInterface(
37 : &pTD,
38 : sTypeName.pData, 0x00000000, 0x0000, 0x0000, 0x00000000, 0x00000000,
39 : 1, aSuperTypes,
40 : 1,
41 0 : pMembers );
42 :
43 0 : typelib_typedescription_register( (typelib_TypeDescription**)&pTD );
44 0 : typelib_typedescriptionreference_release( pMembers[0] );
45 0 : typelib_typedescription_release( (typelib_TypeDescription*)pTD );
46 :
47 0 : return new ::com::sun::star::uno::Type( ::com::sun::star::uno::TypeClass_INTERFACE, sTypeName ); // leaked
48 : }
49 : };
50 :
51 : } } } } }
52 :
53 : namespace com { namespace sun { namespace star { namespace uno {
54 :
55 0 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::uno::XUnloadingPreference const *) {
56 0 : const ::com::sun::star::uno::Type &rRet = *detail::theXUnloadingPreferenceType::get();
57 : // End inline typedescription generation
58 : static bool bInitStarted = false;
59 0 : if (!bInitStarted)
60 : {
61 0 : ::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
62 0 : if (!bInitStarted)
63 : {
64 : OSL_DOUBLE_CHECKED_LOCKING_MEMORY_BARRIER();
65 0 : bInitStarted = true;
66 0 : ::cppu::UnoType< css::uno::RuntimeException >::get();
67 :
68 0 : typelib_InterfaceMethodTypeDescription * pMethod = 0;
69 : {
70 0 : ::rtl::OUString the_ExceptionName0( "com.sun.star.uno.RuntimeException" );
71 0 : rtl_uString * the_Exceptions[] = { the_ExceptionName0.pData };
72 0 : ::rtl::OUString sReturnType0( "boolean" );
73 0 : ::rtl::OUString sMethodName0( "com.sun.star.uno.XUnloadingPreference::releaseOnNotification" );
74 : typelib_typedescription_newInterfaceMethod( &pMethod,
75 : 3, sal_False,
76 : sMethodName0.pData,
77 : (typelib_TypeClass)::com::sun::star::uno::TypeClass_BOOLEAN, sReturnType0.pData,
78 : 0, 0,
79 0 : 1, the_Exceptions );
80 0 : typelib_typedescription_register( (typelib_TypeDescription**)&pMethod );
81 : }
82 0 : typelib_typedescription_release( (typelib_TypeDescription*)pMethod );
83 0 : }
84 : }
85 : else
86 : {
87 : OSL_DOUBLE_CHECKED_LOCKING_MEMORY_BARRIER();
88 : }
89 0 : return rRet;
90 : }
91 :
92 : } } } }
93 :
94 0 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(SAL_UNUSED_PARAMETER ::com::sun::star::uno::Reference< css::uno::XUnloadingPreference > const *) SAL_THROW(()) {
95 0 : return ::cppu::UnoType< ::com::sun::star::uno::Reference< css::uno::XUnloadingPreference > >::get();
96 : }
97 :
98 0 : ::com::sun::star::uno::Type const & css::uno::XUnloadingPreference::static_type(SAL_UNUSED_PARAMETER void *) {
99 0 : return ::getCppuType(static_cast< ::com::sun::star::uno::Reference< css::uno::XUnloadingPreference > * >(0));
100 : }
101 :
102 : #endif // INCLUDED_COM_SUN_STAR_UNO_XUNLOADINGPREFERENCE_HPP
|