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