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