Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_RENDERING_STROKEATTRIBUTES_HDL
2 : #define INCLUDED_COM_SUN_STAR_RENDERING_STROKEATTRIBUTES_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/uno/Sequence.h"
7 : #include "cppu/macros.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 rendering {
13 :
14 : #ifdef SAL_W32
15 : # pragma pack(push, 8)
16 : #endif
17 :
18 0 : struct StrokeAttributes {
19 : inline StrokeAttributes() SAL_THROW(());
20 :
21 : inline StrokeAttributes(const double& StrokeWidth_, const double& MiterLimit_, const ::com::sun::star::uno::Sequence< double >& DashArray_, const ::com::sun::star::uno::Sequence< double >& LineArray_, const ::sal_Int8& StartCapType_, const ::sal_Int8& EndCapType_, const ::sal_Int8& JoinType_) SAL_THROW(());
22 :
23 : double StrokeWidth;
24 : double MiterLimit;
25 : ::com::sun::star::uno::Sequence< double > DashArray;
26 : ::com::sun::star::uno::Sequence< double > LineArray;
27 : ::sal_Int8 StartCapType;
28 : ::sal_Int8 EndCapType;
29 : ::sal_Int8 JoinType;
30 : };
31 :
32 : #ifdef SAL_W32
33 : # pragma pack(pop)
34 : #endif
35 :
36 :
37 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::rendering::StrokeAttributes const *);
38 : } } } }
39 :
40 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const css::rendering::StrokeAttributes *) SAL_THROW(());
41 :
42 : #endif
|