Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_LINGUISTIC2_SINGLEPROOFREADINGERROR_HDL
2 : #define INCLUDED_COM_SUN_STAR_LINGUISTIC2_SINGLEPROOFREADINGERROR_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/beans/PropertyValue.hdl"
7 : #include "com/sun/star/uno/Sequence.h"
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 linguistic2 {
15 :
16 : #ifdef SAL_W32
17 : # pragma pack(push, 8)
18 : #endif
19 :
20 0 : struct SingleProofreadingError {
21 : inline SingleProofreadingError() SAL_THROW(());
22 :
23 : inline SingleProofreadingError(const ::sal_Int32& nErrorStart_, const ::sal_Int32& nErrorLength_, const ::sal_Int32& nErrorType_, const ::rtl::OUString& aRuleIdentifier_, const ::rtl::OUString& aShortComment_, const ::rtl::OUString& aFullComment_, const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aSuggestions_, const ::com::sun::star::uno::Sequence< css::beans::PropertyValue >& aProperties_) SAL_THROW(());
24 :
25 : ::sal_Int32 nErrorStart;
26 : ::sal_Int32 nErrorLength;
27 : ::sal_Int32 nErrorType;
28 : ::rtl::OUString aRuleIdentifier;
29 : ::rtl::OUString aShortComment;
30 : ::rtl::OUString aFullComment;
31 : ::com::sun::star::uno::Sequence< ::rtl::OUString > aSuggestions;
32 : ::com::sun::star::uno::Sequence< css::beans::PropertyValue > aProperties;
33 : };
34 :
35 : #ifdef SAL_W32
36 : # pragma pack(pop)
37 : #endif
38 :
39 :
40 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::linguistic2::SingleProofreadingError const *);
41 : } } } }
42 :
43 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const css::linguistic2::SingleProofreadingError *) SAL_THROW(());
44 :
45 : #endif
|