Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_DEPLOYMENT_PLATFORMEXCEPTION_HPP
2 : #define INCLUDED_COM_SUN_STAR_DEPLOYMENT_PLATFORMEXCEPTION_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/deployment/PlatformException.hdl"
7 :
8 : #include "com/sun/star/deployment/XPackage.hpp"
9 : #include "com/sun/star/uno/Exception.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 com { namespace sun { namespace star { namespace deployment {
17 :
18 0 : inline PlatformException::PlatformException() SAL_THROW(())
19 : : css::uno::Exception()
20 0 : , package()
21 0 : { }
22 :
23 0 : inline PlatformException::PlatformException(const ::rtl::OUString& Message_, const ::com::sun::star::uno::Reference< css::uno::XInterface >& Context_, const ::com::sun::star::uno::Reference< css::deployment::XPackage >& package_) SAL_THROW(())
24 : : css::uno::Exception(Message_, Context_)
25 0 : , package(package_)
26 0 : { }
27 :
28 : PlatformException::PlatformException(PlatformException const & the_other): css::uno::Exception(the_other), package(the_other.package) {}
29 :
30 0 : PlatformException::~PlatformException() {}
31 :
32 : PlatformException & PlatformException::operator =(PlatformException const & the_other) {
33 : //TODO: Just like its implicitly-defined counterpart, this function definition is not exception-safe
34 : css::uno::Exception::operator =(the_other);
35 : package = the_other.package;
36 : return *this;
37 : }
38 :
39 : } } } }
40 :
41 : namespace com { namespace sun { namespace star { namespace deployment {
42 :
43 0 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::deployment::PlatformException const *) {
44 : static typelib_TypeDescriptionReference * the_type = 0;
45 0 : if ( !the_type )
46 : {
47 0 : typelib_static_type_init( &the_type, typelib_TypeClass_EXCEPTION, "com.sun.star.deployment.PlatformException" );
48 : }
49 0 : return * reinterpret_cast< ::com::sun::star::uno::Type * >( &the_type );
50 : }
51 :
52 : } } } }
53 :
54 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(SAL_UNUSED_PARAMETER css::deployment::PlatformException const *) SAL_THROW(()) {
55 : return ::cppu::UnoType< css::deployment::PlatformException >::get();
56 : }
57 :
58 : #endif // INCLUDED_COM_SUN_STAR_DEPLOYMENT_PLATFORMEXCEPTION_HPP
|