Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_DOCUMENT_LOCKEDDOCUMENTREQUEST_HPP
2 : #define INCLUDED_COM_SUN_STAR_DOCUMENT_LOCKEDDOCUMENTREQUEST_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/document/LockedDocumentRequest.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 35 : inline LockedDocumentRequest::LockedDocumentRequest() SAL_THROW(())
18 : : css::uno::Exception()
19 : , DocumentURL()
20 35 : , UserInfo()
21 35 : { }
22 :
23 0 : inline LockedDocumentRequest::LockedDocumentRequest(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 : LockedDocumentRequest::LockedDocumentRequest(LockedDocumentRequest const & the_other): css::uno::Exception(the_other), DocumentURL(the_other.DocumentURL), UserInfo(the_other.UserInfo) {}
30 :
31 35 : LockedDocumentRequest::~LockedDocumentRequest() {}
32 :
33 : LockedDocumentRequest & LockedDocumentRequest::operator =(LockedDocumentRequest 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::LockedDocumentRequest 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.LockedDocumentRequest" );
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::LockedDocumentRequest const *) SAL_THROW(()) {
57 : return ::cppu::UnoType< css::document::LockedDocumentRequest >::get();
58 : }
59 :
60 : #endif // INCLUDED_COM_SUN_STAR_DOCUMENT_LOCKEDDOCUMENTREQUEST_HPP
|