Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_DRAWING_LINEDASH_HPP
2 : #define INCLUDED_COM_SUN_STAR_DRAWING_LINEDASH_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/drawing/LineDash.hdl"
7 :
8 : #include "com/sun/star/drawing/DashStyle.hpp"
9 : #include "com/sun/star/uno/Type.hxx"
10 : #include "cppu/unotype.hxx"
11 : #include "sal/types.h"
12 : #include "typelib/typeclass.h"
13 : #include "typelib/typedescription.h"
14 :
15 : namespace com { namespace sun { namespace star { namespace drawing {
16 :
17 1883 : inline LineDash::LineDash() SAL_THROW(())
18 : : Style(css::drawing::DashStyle_RECT)
19 : , Dots(0)
20 : , DotLen(0)
21 : , Dashes(0)
22 : , DashLen(0)
23 1883 : , Distance(0)
24 : {
25 1883 : }
26 :
27 299 : inline LineDash::LineDash(const css::drawing::DashStyle& Style_, const ::sal_Int16& Dots_, const ::sal_Int32& DotLen_, const ::sal_Int16& Dashes_, const ::sal_Int32& DashLen_, const ::sal_Int32& Distance_) SAL_THROW(())
28 : : Style(Style_)
29 : , Dots(Dots_)
30 : , DotLen(DotLen_)
31 : , Dashes(Dashes_)
32 : , DashLen(DashLen_)
33 299 : , Distance(Distance_)
34 : {
35 299 : }
36 :
37 : } } } }
38 :
39 : namespace com { namespace sun { namespace star { namespace drawing {
40 :
41 2215 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::drawing::LineDash const *) {
42 : //TODO: On certain platforms with weak memory models, the following code can result in some threads observing that the_type points to garbage
43 : static ::typelib_TypeDescriptionReference * the_type = 0;
44 2215 : if (the_type == 0) {
45 57 : ::typelib_static_type_init(&the_type, typelib_TypeClass_STRUCT, "com.sun.star.drawing.LineDash");
46 : }
47 2215 : return *reinterpret_cast< ::com::sun::star::uno::Type * >(&the_type);
48 : }
49 :
50 : } } } }
51 :
52 365 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(SAL_UNUSED_PARAMETER css::drawing::LineDash const *) SAL_THROW(()) {
53 365 : return ::cppu::UnoType< css::drawing::LineDash >::get();
54 : }
55 :
56 : #endif // INCLUDED_COM_SUN_STAR_DRAWING_LINEDASH_HPP
|