Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_LANG_WRAPPEDTARGETEXCEPTION_HPP
2 : #define INCLUDED_COM_SUN_STAR_LANG_WRAPPEDTARGETEXCEPTION_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/lang/WrappedTargetException.hdl"
7 :
8 : #include "com/sun/star/uno/Exception.hpp"
9 : #include "com/sun/star/uno/Any.hxx"
10 : #include "com/sun/star/uno/Type.hxx"
11 : #include "cppu/unotype.hxx"
12 : #include "osl/mutex.hxx"
13 : #include "rtl/instance.hxx"
14 :
15 : namespace com { namespace sun { namespace star { namespace lang {
16 :
17 : inline WrappedTargetException::WrappedTargetException() SAL_THROW(())
18 : : css::uno::Exception()
19 : , TargetException()
20 : { }
21 :
22 : inline WrappedTargetException::WrappedTargetException(const ::rtl::OUString& Message_, const ::com::sun::star::uno::Reference< css::uno::XInterface >& Context_, const ::com::sun::star::uno::Any& TargetException_) SAL_THROW(())
23 : : css::uno::Exception(Message_, Context_)
24 : , TargetException(TargetException_)
25 : { }
26 :
27 : WrappedTargetException::WrappedTargetException(WrappedTargetException const & the_other): css::uno::Exception(the_other), TargetException(the_other.TargetException) {}
28 :
29 : WrappedTargetException::~WrappedTargetException() {}
30 :
31 : WrappedTargetException & WrappedTargetException::operator =(WrappedTargetException const & the_other) {
32 : //TODO: Just like its implicitly-defined counterpart, this function definition is not exception-safe
33 : css::uno::Exception::operator =(the_other);
34 : TargetException = the_other.TargetException;
35 : return *this;
36 : }
37 :
38 : } } } }
39 :
40 : namespace com { namespace sun { namespace star { namespace lang {
41 :
42 257 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::lang::WrappedTargetException const *) {
43 : static typelib_TypeDescriptionReference * the_type = 0;
44 257 : if ( !the_type )
45 : {
46 : typelib_TypeDescriptionReference * aMemberRefs[1];
47 257 : const ::com::sun::star::uno::Type& rMemberType_any = ::cppu::UnoType< ::com::sun::star::uno::Any >::get();
48 257 : aMemberRefs[0] = rMemberType_any.getTypeLibType();
49 :
50 257 : typelib_static_compound_type_init( &the_type, typelib_TypeClass_EXCEPTION, "com.sun.star.lang.WrappedTargetException", * ::typelib_static_type_getByTypeClass( typelib_TypeClass_EXCEPTION ), 1, aMemberRefs );
51 : }
52 257 : return * reinterpret_cast< const ::com::sun::star::uno::Type * >( &the_type );
53 : }
54 :
55 : } } } }
56 :
57 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(SAL_UNUSED_PARAMETER css::lang::WrappedTargetException const *) SAL_THROW(()) {
58 : return ::cppu::UnoType< css::lang::WrappedTargetException >::get();
59 : }
60 :
61 : #endif // INCLUDED_COM_SUN_STAR_LANG_WRAPPEDTARGETEXCEPTION_HPP
|