Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_UTIL_SEARCHOPTIONS_HDL
2 : #define INCLUDED_COM_SUN_STAR_UTIL_SEARCHOPTIONS_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/lang/Locale.hdl"
7 : #include "com/sun/star/util/SearchAlgorithms.hdl"
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 util {
15 :
16 : #ifdef SAL_W32
17 : # pragma pack(push, 8)
18 : #endif
19 :
20 584 : struct SearchOptions {
21 : inline SearchOptions() SAL_THROW(());
22 :
23 : inline SearchOptions(const css::util::SearchAlgorithms& algorithmType_, const ::sal_Int32& searchFlag_, const ::rtl::OUString& searchString_, const ::rtl::OUString& replaceString_, const css::lang::Locale& Locale_, const ::sal_Int32& changedChars_, const ::sal_Int32& deletedChars_, const ::sal_Int32& insertedChars_, const ::sal_Int32& transliterateFlags_) SAL_THROW(());
24 :
25 : css::util::SearchAlgorithms algorithmType;
26 : ::sal_Int32 searchFlag;
27 : ::rtl::OUString searchString;
28 : ::rtl::OUString replaceString;
29 : css::lang::Locale Locale;
30 : ::sal_Int32 changedChars;
31 : ::sal_Int32 deletedChars;
32 : ::sal_Int32 insertedChars;
33 : ::sal_Int32 transliterateFlags;
34 : };
35 :
36 : #ifdef SAL_W32
37 : # pragma pack(pop)
38 : #endif
39 :
40 :
41 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::util::SearchOptions const *);
42 : } } } }
43 :
44 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const css::util::SearchOptions *) SAL_THROW(());
45 :
46 : #endif
|