Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_I18N_FORMATELEMENT_HPP
2 : #define INCLUDED_COM_SUN_STAR_I18N_FORMATELEMENT_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/i18n/FormatElement.hdl"
7 :
8 : #include "com/sun/star/uno/Type.hxx"
9 : #include "cppu/unotype.hxx"
10 : #include "rtl/ustring.hxx"
11 : #include "sal/types.h"
12 : #include "typelib/typeclass.h"
13 : #include "typelib/typedescription.h"
14 :
15 : namespace com { namespace sun { namespace star { namespace i18n {
16 :
17 : inline FormatElement::FormatElement() SAL_THROW(())
18 : : formatCode()
19 : , formatName()
20 : , formatKey()
21 : , formatType()
22 : , formatUsage()
23 : , formatIndex(0)
24 : , isDefault(false)
25 : {
26 : }
27 :
28 952486 : inline FormatElement::FormatElement(const ::rtl::OUString& formatCode_, const ::rtl::OUString& formatName_, const ::rtl::OUString& formatKey_, const ::rtl::OUString& formatType_, const ::rtl::OUString& formatUsage_, const ::sal_Int16& formatIndex_, const ::sal_Bool& isDefault_) SAL_THROW(())
29 : : formatCode(formatCode_)
30 : , formatName(formatName_)
31 : , formatKey(formatKey_)
32 : , formatType(formatType_)
33 : , formatUsage(formatUsage_)
34 : , formatIndex(formatIndex_)
35 952486 : , isDefault(isDefault_)
36 : {
37 952486 : }
38 :
39 : } } } }
40 :
41 : namespace com { namespace sun { namespace star { namespace i18n {
42 :
43 68 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::i18n::FormatElement const *) {
44 : //TODO: On certain platforms with weak memory models, the following code can result in some threads observing that the_type points to garbage
45 : static ::typelib_TypeDescriptionReference * the_type = 0;
46 68 : if (the_type == 0) {
47 68 : ::typelib_static_type_init(&the_type, typelib_TypeClass_STRUCT, "com.sun.star.i18n.FormatElement");
48 : }
49 68 : return *reinterpret_cast< ::com::sun::star::uno::Type * >(&the_type);
50 : }
51 :
52 : } } } }
53 :
54 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(SAL_UNUSED_PARAMETER css::i18n::FormatElement const *) SAL_THROW(()) {
55 : return ::cppu::UnoType< css::i18n::FormatElement >::get();
56 : }
57 :
58 : #endif // INCLUDED_COM_SUN_STAR_I18N_FORMATELEMENT_HPP
|