Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_I18N_LANGUAGECOUNTRYINFO_HDL
2 : #define INCLUDED_COM_SUN_STAR_I18N_LANGUAGECOUNTRYINFO_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "cppu/macros.hxx"
7 : #include "rtl/ustring.hxx"
8 :
9 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
10 :
11 : namespace com { namespace sun { namespace star { namespace i18n {
12 :
13 : #ifdef SAL_W32
14 : # pragma pack(push, 8)
15 : #endif
16 :
17 132039 : struct LanguageCountryInfo {
18 : inline LanguageCountryInfo() SAL_THROW(());
19 :
20 : inline LanguageCountryInfo(const ::rtl::OUString& Language_, const ::rtl::OUString& LanguageDefaultName_, const ::rtl::OUString& Country_, const ::rtl::OUString& CountryDefaultName_, const ::rtl::OUString& Variant_) SAL_THROW(());
21 :
22 : ::rtl::OUString Language;
23 : ::rtl::OUString LanguageDefaultName;
24 : ::rtl::OUString Country;
25 : ::rtl::OUString CountryDefaultName;
26 : ::rtl::OUString Variant;
27 : };
28 :
29 : #ifdef SAL_W32
30 : # pragma pack(pop)
31 : #endif
32 :
33 :
34 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::i18n::LanguageCountryInfo const *);
35 : } } } }
36 :
37 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const css::i18n::LanguageCountryInfo *) SAL_THROW(());
38 :
39 : #endif
|