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