Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_TEXT_TEXTMARKUPDESCRIPTOR_HPP
2 : #define INCLUDED_COM_SUN_STAR_TEXT_TEXTMARKUPDESCRIPTOR_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/text/TextMarkupDescriptor.hdl"
7 :
8 : #include "com/sun/star/container/XStringKeyMap.hpp"
9 : #include "com/sun/star/uno/Reference.hxx"
10 : #include "com/sun/star/uno/Type.hxx"
11 : #include "cppu/unotype.hxx"
12 : #include "rtl/ustring.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 text {
18 :
19 : inline TextMarkupDescriptor::TextMarkupDescriptor() SAL_THROW(())
20 : : nType(0)
21 : , aIdentifier()
22 : , nOffset(0)
23 : , nLength(0)
24 : , xMarkupInfoContainer()
25 : {
26 : }
27 :
28 : inline TextMarkupDescriptor::TextMarkupDescriptor(const ::sal_Int32& nType_, const ::rtl::OUString& aIdentifier_, const ::sal_Int32& nOffset_, const ::sal_Int32& nLength_, const ::com::sun::star::uno::Reference< css::container::XStringKeyMap >& xMarkupInfoContainer_) SAL_THROW(())
29 : : nType(nType_)
30 : , aIdentifier(aIdentifier_)
31 : , nOffset(nOffset_)
32 : , nLength(nLength_)
33 : , xMarkupInfoContainer(xMarkupInfoContainer_)
34 : {
35 : }
36 :
37 : } } } }
38 :
39 : namespace com { namespace sun { namespace star { namespace text {
40 :
41 0 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::text::TextMarkupDescriptor 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 0 : if (the_type == 0) {
45 0 : ::typelib_static_type_init(&the_type, typelib_TypeClass_STRUCT, "com.sun.star.text.TextMarkupDescriptor");
46 : }
47 0 : return *reinterpret_cast< ::com::sun::star::uno::Type * >(&the_type);
48 : }
49 :
50 : } } } }
51 :
52 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(SAL_UNUSED_PARAMETER css::text::TextMarkupDescriptor const *) SAL_THROW(()) {
53 : return ::cppu::UnoType< css::text::TextMarkupDescriptor >::get();
54 : }
55 :
56 : #endif // INCLUDED_COM_SUN_STAR_TEXT_TEXTMARKUPDESCRIPTOR_HPP
|