Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_I18N_LINEBREAKHYPHENATIONOPTIONS_HPP
2 : #define INCLUDED_COM_SUN_STAR_I18N_LINEBREAKHYPHENATIONOPTIONS_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/i18n/LineBreakHyphenationOptions.hdl"
7 :
8 : #include "com/sun/star/beans/PropertyValues.hpp"
9 : #include "com/sun/star/linguistic2/XHyphenator.hpp"
10 : #include "com/sun/star/uno/Reference.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 i18n {
18 :
19 17258 : inline LineBreakHyphenationOptions::LineBreakHyphenationOptions() SAL_THROW(())
20 : : rHyphenator()
21 : , aHyphenationOptions()
22 17258 : , hyphenIndex(0)
23 : {
24 17258 : }
25 :
26 51748 : inline LineBreakHyphenationOptions::LineBreakHyphenationOptions(const ::com::sun::star::uno::Reference< css::linguistic2::XHyphenator >& rHyphenator_, const ::com::sun::star::uno::Sequence< css::beans::PropertyValue >& aHyphenationOptions_, const ::sal_Int32& hyphenIndex_) SAL_THROW(())
27 : : rHyphenator(rHyphenator_)
28 : , aHyphenationOptions(aHyphenationOptions_)
29 51748 : , hyphenIndex(hyphenIndex_)
30 : {
31 51748 : }
32 :
33 : } } } }
34 :
35 : namespace com { namespace sun { namespace star { namespace i18n {
36 :
37 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::i18n::LineBreakHyphenationOptions const *) {
38 : //TODO: On certain platforms with weak memory models, the following code can result in some threads observing that the_type points to garbage
39 : static ::typelib_TypeDescriptionReference * the_type = 0;
40 : if (the_type == 0) {
41 : ::typelib_static_type_init(&the_type, typelib_TypeClass_STRUCT, "com.sun.star.i18n.LineBreakHyphenationOptions");
42 : }
43 : return *reinterpret_cast< ::com::sun::star::uno::Type * >(&the_type);
44 : }
45 :
46 : } } } }
47 :
48 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(SAL_UNUSED_PARAMETER css::i18n::LineBreakHyphenationOptions const *) SAL_THROW(()) {
49 : return ::cppu::UnoType< css::i18n::LineBreakHyphenationOptions >::get();
50 : }
51 :
52 : #endif // INCLUDED_COM_SUN_STAR_I18N_LINEBREAKHYPHENATIONOPTIONS_HPP
|