Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_FRAME_STATUS_VISIBILITY_HPP
2 : #define INCLUDED_COM_SUN_STAR_FRAME_STATUS_VISIBILITY_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/frame/status/Visibility.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 frame { namespace status {
15 :
16 49744 : inline Visibility::Visibility() SAL_THROW(())
17 49744 : : bVisible(false)
18 : {
19 49744 : }
20 :
21 0 : inline Visibility::Visibility(const ::sal_Bool& bVisible_) SAL_THROW(())
22 0 : : bVisible(bVisible_)
23 : {
24 0 : }
25 :
26 : } } } } }
27 :
28 : namespace com { namespace sun { namespace star { namespace frame { namespace status {
29 :
30 35172 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::frame::status::Visibility const *) {
31 : //TODO: On certain platforms with weak memory models, the following code can result in some threads observing that the_type points to garbage
32 : static ::typelib_TypeDescriptionReference * the_type = 0;
33 35172 : if (the_type == 0) {
34 60 : ::typelib_static_type_init(&the_type, typelib_TypeClass_STRUCT, "com.sun.star.frame.status.Visibility");
35 : }
36 35172 : return *reinterpret_cast< ::com::sun::star::uno::Type * >(&the_type);
37 : }
38 :
39 : } } } } }
40 :
41 10362 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(SAL_UNUSED_PARAMETER css::frame::status::Visibility const *) SAL_THROW(()) {
42 10362 : return ::cppu::UnoType< css::frame::status::Visibility >::get();
43 : }
44 :
45 : #endif // INCLUDED_COM_SUN_STAR_FRAME_STATUS_VISIBILITY_HPP
|