Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_CHART2_INCREMENTDATA_HPP
2 : #define INCLUDED_COM_SUN_STAR_CHART2_INCREMENTDATA_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/chart2/IncrementData.hdl"
7 :
8 : #include "com/sun/star/chart2/SubIncrement.hpp"
9 : #include "com/sun/star/uno/Any.hxx"
10 : #include "com/sun/star/uno/Sequence.hxx"
11 : #include "com/sun/star/uno/Type.hxx"
12 : #include "cppu/unotype.hxx"
13 : #include "sal/types.h"
14 : #include "typelib/typeclass.h"
15 : #include "typelib/typedescription.h"
16 :
17 : namespace com { namespace sun { namespace star { namespace chart2 {
18 :
19 3352 : inline IncrementData::IncrementData() SAL_THROW(())
20 : : Distance()
21 : , PostEquidistant()
22 : , BaseValue()
23 3352 : , SubIncrements()
24 : {
25 3352 : }
26 :
27 : inline IncrementData::IncrementData(const ::com::sun::star::uno::Any& Distance_, const ::com::sun::star::uno::Any& PostEquidistant_, const ::com::sun::star::uno::Any& BaseValue_, const ::com::sun::star::uno::Sequence< css::chart2::SubIncrement >& SubIncrements_) SAL_THROW(())
28 : : Distance(Distance_)
29 : , PostEquidistant(PostEquidistant_)
30 : , BaseValue(BaseValue_)
31 : , SubIncrements(SubIncrements_)
32 : {
33 : }
34 :
35 : } } } }
36 :
37 : namespace com { namespace sun { namespace star { namespace chart2 {
38 :
39 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::chart2::IncrementData const *) {
40 : //TODO: On certain platforms with weak memory models, the following code can result in some threads observing that the_type points to garbage
41 : static ::typelib_TypeDescriptionReference * the_type = 0;
42 : if (the_type == 0) {
43 : ::typelib_static_type_init(&the_type, typelib_TypeClass_STRUCT, "com.sun.star.chart2.IncrementData");
44 : }
45 : return *reinterpret_cast< ::com::sun::star::uno::Type * >(&the_type);
46 : }
47 :
48 : } } } }
49 :
50 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(SAL_UNUSED_PARAMETER css::chart2::IncrementData const *) SAL_THROW(()) {
51 : return ::cppu::UnoType< css::chart2::IncrementData >::get();
52 : }
53 :
54 : #endif // INCLUDED_COM_SUN_STAR_CHART2_INCREMENTDATA_HPP
|