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