Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_I18N_CALENDAR_HDL
2 : #define INCLUDED_COM_SUN_STAR_I18N_CALENDAR_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/i18n/CalendarItem.hdl"
7 : #include "com/sun/star/uno/Sequence.h"
8 : #include "cppu/macros.hxx"
9 : #include "rtl/ustring.hxx"
10 : #include "sal/types.h"
11 :
12 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
13 :
14 : namespace com { namespace sun { namespace star { namespace i18n {
15 :
16 : #ifdef SAL_W32
17 : # pragma pack(push, 8)
18 : #endif
19 :
20 0 : struct Calendar {
21 : inline Calendar() SAL_THROW(());
22 :
23 : inline Calendar(const ::com::sun::star::uno::Sequence< css::i18n::CalendarItem >& Days_, const ::com::sun::star::uno::Sequence< css::i18n::CalendarItem >& Months_, const ::com::sun::star::uno::Sequence< css::i18n::CalendarItem >& Eras_, const ::rtl::OUString& StartOfWeek_, const ::sal_Int16& MinimumNumberOfDaysForFirstWeek_, const ::sal_Bool& Default_, const ::rtl::OUString& Name_) SAL_THROW(());
24 :
25 : ::com::sun::star::uno::Sequence< css::i18n::CalendarItem > Days;
26 : ::com::sun::star::uno::Sequence< css::i18n::CalendarItem > Months;
27 : ::com::sun::star::uno::Sequence< css::i18n::CalendarItem > Eras;
28 : ::rtl::OUString StartOfWeek;
29 : ::sal_Int16 MinimumNumberOfDaysForFirstWeek;
30 : ::sal_Bool Default;
31 : ::rtl::OUString Name;
32 : };
33 :
34 : #ifdef SAL_W32
35 : # pragma pack(pop)
36 : #endif
37 :
38 :
39 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::i18n::Calendar const *);
40 : } } } }
41 :
42 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const css::i18n::Calendar *) SAL_THROW(());
43 :
44 : #endif
|