Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_I18N_CALENDAR2_HPP
2 : #define INCLUDED_COM_SUN_STAR_I18N_CALENDAR2_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/i18n/Calendar2.hdl"
7 :
8 : #include "com/sun/star/i18n/CalendarItem2.hpp"
9 : #include "com/sun/star/uno/Sequence.hxx"
10 : #include "com/sun/star/uno/Type.hxx"
11 : #include "cppu/unotype.hxx"
12 : #include "rtl/ustring.hxx"
13 : #include "sal/types.h"
14 : #include "typelib/typeclass.h"
15 : #include "typelib/typedescription.h"
16 :
17 : namespace com { namespace sun { namespace star { namespace i18n {
18 :
19 46457 : inline Calendar2::Calendar2() SAL_THROW(())
20 : : Days()
21 : , Months()
22 : , GenitiveMonths()
23 : , PartitiveMonths()
24 : , Eras()
25 : , StartOfWeek()
26 : , MinimumNumberOfDaysForFirstWeek(0)
27 : , Default(false)
28 46457 : , Name()
29 : {
30 46457 : }
31 :
32 2604 : inline Calendar2::Calendar2(const ::com::sun::star::uno::Sequence< css::i18n::CalendarItem2 >& Days_, const ::com::sun::star::uno::Sequence< css::i18n::CalendarItem2 >& Months_, const ::com::sun::star::uno::Sequence< css::i18n::CalendarItem2 >& GenitiveMonths_, const ::com::sun::star::uno::Sequence< css::i18n::CalendarItem2 >& PartitiveMonths_, const ::com::sun::star::uno::Sequence< css::i18n::CalendarItem2 >& Eras_, const ::rtl::OUString& StartOfWeek_, const ::sal_Int16& MinimumNumberOfDaysForFirstWeek_, const ::sal_Bool& Default_, const ::rtl::OUString& Name_) SAL_THROW(())
33 : : Days(Days_)
34 : , Months(Months_)
35 : , GenitiveMonths(GenitiveMonths_)
36 : , PartitiveMonths(PartitiveMonths_)
37 : , Eras(Eras_)
38 : , StartOfWeek(StartOfWeek_)
39 : , MinimumNumberOfDaysForFirstWeek(MinimumNumberOfDaysForFirstWeek_)
40 : , Default(Default_)
41 2604 : , Name(Name_)
42 : {
43 2604 : }
44 :
45 : } } } }
46 :
47 : namespace com { namespace sun { namespace star { namespace i18n {
48 :
49 72 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::i18n::Calendar2 const *) {
50 : //TODO: On certain platforms with weak memory models, the following code can result in some threads observing that the_type points to garbage
51 : static ::typelib_TypeDescriptionReference * the_type = 0;
52 72 : if (the_type == 0) {
53 72 : ::typelib_static_type_init(&the_type, typelib_TypeClass_STRUCT, "com.sun.star.i18n.Calendar2");
54 : }
55 72 : return *reinterpret_cast< ::com::sun::star::uno::Type * >(&the_type);
56 : }
57 :
58 : } } } }
59 :
60 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(SAL_UNUSED_PARAMETER css::i18n::Calendar2 const *) SAL_THROW(()) {
61 : return ::cppu::UnoType< css::i18n::Calendar2 >::get();
62 : }
63 :
64 : #endif // INCLUDED_COM_SUN_STAR_I18N_CALENDAR2_HPP
|