Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_UCB_GLOBALTRANSFERCOMMANDARGUMENT_HDL
2 : #define INCLUDED_COM_SUN_STAR_UCB_GLOBALTRANSFERCOMMANDARGUMENT_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/ucb/TransferCommandOperation.hdl"
7 : #include "cppu/macros.hxx"
8 : #include "rtl/ustring.hxx"
9 : #include "sal/types.h"
10 :
11 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
12 :
13 : namespace com { namespace sun { namespace star { namespace ucb {
14 :
15 : #ifdef SAL_W32
16 : # pragma pack(push, 8)
17 : #endif
18 :
19 1366 : struct GlobalTransferCommandArgument {
20 : inline GlobalTransferCommandArgument() SAL_THROW(());
21 :
22 : inline GlobalTransferCommandArgument(const css::ucb::TransferCommandOperation& Operation_, const ::rtl::OUString& SourceURL_, const ::rtl::OUString& TargetURL_, const ::rtl::OUString& NewTitle_, const ::sal_Int32& NameClash_) SAL_THROW(());
23 :
24 : css::ucb::TransferCommandOperation Operation;
25 : ::rtl::OUString SourceURL;
26 : ::rtl::OUString TargetURL;
27 : ::rtl::OUString NewTitle;
28 : ::sal_Int32 NameClash;
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::GlobalTransferCommandArgument const *);
37 : } } } }
38 :
39 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const css::ucb::GlobalTransferCommandArgument *) SAL_THROW(());
40 :
41 : #endif
|