Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_DOCUMENT_LOCKEDONSAVINGREQUEST_HPP
2 : #define INCLUDED_COM_SUN_STAR_DOCUMENT_LOCKEDONSAVINGREQUEST_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/document/LockedOnSavingRequest.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/ustring.hxx"
13 : #include "rtl/instance.hxx"
14 :
15 : namespace com { namespace sun { namespace star { namespace document {
16 :
17 0 : inline LockedOnSavingRequest::LockedOnSavingRequest() SAL_THROW(())
18 : : css::uno::Exception()
19 : , DocumentURL()
20 0 : , UserInfo()
21 0 : { }
22 :
23 0 : inline LockedOnSavingRequest::LockedOnSavingRequest(const ::rtl::OUString& Message_, const ::com::sun::star::uno::Reference< css::uno::XInterface >& Context_, const ::rtl::OUString& DocumentURL_, const ::rtl::OUString& UserInfo_) SAL_THROW(())
24 : : css::uno::Exception(Message_, Context_)
25 : , DocumentURL(DocumentURL_)
26 0 : , UserInfo(UserInfo_)
27 0 : { }
28 :
29 : LockedOnSavingRequest::LockedOnSavingRequest(LockedOnSavingRequest const & the_other): css::uno::Exception(the_other), DocumentURL(the_other.DocumentURL), UserInfo(the_other.UserInfo) {}
30 :
31 0 : LockedOnSavingRequest::~LockedOnSavingRequest() {}
32 :
33 : LockedOnSavingRequest & LockedOnSavingRequest::operator =(LockedOnSavingRequest 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 : DocumentURL = the_other.DocumentURL;
37 : UserInfo = the_other.UserInfo;
38 : return *this;
39 : }
40 :
41 : } } } }
42 :
43 : namespace com { namespace sun { namespace star { namespace document {
44 :
45 0 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::document::LockedOnSavingRequest 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.document.LockedOnSavingRequest" );
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::document::LockedOnSavingRequest const *) SAL_THROW(()) {
57 : return ::cppu::UnoType< css::document::LockedOnSavingRequest >::get();
58 : }
59 :
60 : #endif // INCLUDED_COM_SUN_STAR_DOCUMENT_LOCKEDONSAVINGREQUEST_HPP
|