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