Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_UCB_CHECKINARGUMENT_HDL
2 : #define INCLUDED_COM_SUN_STAR_UCB_CHECKINARGUMENT_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "cppu/macros.hxx"
7 : #include "rtl/ustring.hxx"
8 : #include "sal/types.h"
9 :
10 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
11 :
12 : namespace com { namespace sun { namespace star { namespace ucb {
13 :
14 : #ifdef SAL_W32
15 : # pragma pack(push, 8)
16 : #endif
17 :
18 0 : struct CheckinArgument {
19 : inline CheckinArgument() SAL_THROW(());
20 :
21 : inline CheckinArgument(const ::sal_Bool& MajorVersion_, const ::rtl::OUString& VersionComment_, const ::rtl::OUString& SourceURL_, const ::rtl::OUString& TargetURL_, const ::rtl::OUString& NewTitle_, const ::rtl::OUString& MimeType_) SAL_THROW(());
22 :
23 : ::sal_Bool MajorVersion;
24 : ::rtl::OUString VersionComment;
25 : ::rtl::OUString SourceURL;
26 : ::rtl::OUString TargetURL;
27 : ::rtl::OUString NewTitle;
28 : ::rtl::OUString MimeType;
29 : };
30 :
31 : #ifdef SAL_W32
32 : # pragma pack(pop)
33 : #endif
34 :
35 :
36 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::ucb::CheckinArgument const *);
37 : } } } }
38 :
39 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const css::ucb::CheckinArgument *) SAL_THROW(());
40 :
41 : #endif
|