Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_I18N_PARSERESULT_HDL
2 : #define INCLUDED_COM_SUN_STAR_I18N_PARSERESULT_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "cppu/macros.hxx"
7 : #include "rtl/ustring.hxx"
8 : #include "sal/types.h"
9 :
10 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
11 :
12 : namespace com { namespace sun { namespace star { namespace i18n {
13 :
14 : #ifdef SAL_W32
15 : # pragma pack(push, 8)
16 : #endif
17 :
18 87890 : struct ParseResult {
19 : inline ParseResult() SAL_THROW(());
20 :
21 : inline ParseResult(const ::sal_Int32& LeadingWhiteSpace_, const ::sal_Int32& EndPos_, const ::sal_Int32& CharLen_, const double& Value_, const ::sal_Int32& TokenType_, const ::sal_Int32& StartFlags_, const ::sal_Int32& ContFlags_, const ::rtl::OUString& DequotedNameOrString_) SAL_THROW(());
22 :
23 : ::sal_Int32 LeadingWhiteSpace;
24 : ::sal_Int32 EndPos;
25 : ::sal_Int32 CharLen;
26 : double Value;
27 : ::sal_Int32 TokenType;
28 : ::sal_Int32 StartFlags;
29 : ::sal_Int32 ContFlags;
30 : ::rtl::OUString DequotedNameOrString;
31 : };
32 :
33 : #ifdef SAL_W32
34 : # pragma pack(pop)
35 : #endif
36 :
37 :
38 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::i18n::ParseResult const *);
39 : } } } }
40 :
41 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const css::i18n::ParseResult *) SAL_THROW(());
42 :
43 : #endif
|