Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_SDBC_DRIVERPROPERTYINFO_HDL
2 : #define INCLUDED_COM_SUN_STAR_SDBC_DRIVERPROPERTYINFO_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/uno/Sequence.h"
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 sdbc {
14 :
15 : #ifdef SAL_W32
16 : # pragma pack(push, 8)
17 : #endif
18 :
19 435 : struct DriverPropertyInfo {
20 : inline DriverPropertyInfo() SAL_THROW(());
21 :
22 : inline DriverPropertyInfo(const ::rtl::OUString& Name_, const ::rtl::OUString& Description_, const ::sal_Bool& IsRequired_, const ::rtl::OUString& Value_, const ::com::sun::star::uno::Sequence< ::rtl::OUString >& Choices_) SAL_THROW(());
23 :
24 : ::rtl::OUString Name;
25 : ::rtl::OUString Description;
26 : ::sal_Bool IsRequired;
27 : ::rtl::OUString Value;
28 : ::com::sun::star::uno::Sequence< ::rtl::OUString > Choices;
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::sdbc::DriverPropertyInfo const *);
37 : } } } }
38 :
39 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const css::sdbc::DriverPropertyInfo *) SAL_THROW(());
40 :
41 : #endif
|