Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_TASK_CLASSIFIEDINTERACTIONREQUEST_HPP
2 : #define INCLUDED_COM_SUN_STAR_TASK_CLASSIFIEDINTERACTIONREQUEST_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/task/ClassifiedInteractionRequest.hdl"
7 :
8 : #include "com/sun/star/task/InteractionClassification.hpp"
9 : #include "com/sun/star/uno/Exception.hpp"
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 task {
16 :
17 13641 : inline ClassifiedInteractionRequest::ClassifiedInteractionRequest() SAL_THROW(())
18 : : css::uno::Exception()
19 13641 : , Classification(css::task::InteractionClassification_ERROR)
20 13641 : { }
21 :
22 37 : inline ClassifiedInteractionRequest::ClassifiedInteractionRequest(const ::rtl::OUString& Message_, const ::com::sun::star::uno::Reference< css::uno::XInterface >& Context_, const css::task::InteractionClassification& Classification_) SAL_THROW(())
23 : : css::uno::Exception(Message_, Context_)
24 37 : , Classification(Classification_)
25 37 : { }
26 :
27 160 : ClassifiedInteractionRequest::ClassifiedInteractionRequest(ClassifiedInteractionRequest const & the_other): css::uno::Exception(the_other), Classification(the_other.Classification) {}
28 :
29 13838 : ClassifiedInteractionRequest::~ClassifiedInteractionRequest() {}
30 :
31 0 : ClassifiedInteractionRequest & ClassifiedInteractionRequest::operator =(ClassifiedInteractionRequest const & the_other) {
32 : //TODO: Just like its implicitly-defined counterpart, this function definition is not exception-safe
33 0 : css::uno::Exception::operator =(the_other);
34 0 : Classification = the_other.Classification;
35 0 : return *this;
36 : }
37 :
38 : } } } }
39 :
40 : namespace com { namespace sun { namespace star { namespace task {
41 :
42 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::task::ClassifiedInteractionRequest 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.task.ClassifiedInteractionRequest" );
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::task::ClassifiedInteractionRequest const *) SAL_THROW(()) {
54 : return ::cppu::UnoType< css::task::ClassifiedInteractionRequest >::get();
55 : }
56 :
57 : #endif // INCLUDED_COM_SUN_STAR_TASK_CLASSIFIEDINTERACTIONREQUEST_HPP
|