Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_XML_XPATH_XXPATHOBJECT_HDL
2 : #define INCLUDED_COM_SUN_STAR_XML_XPATH_XXPATHOBJECT_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/uno/RuntimeException.hdl"
7 : #include "com/sun/star/uno/XInterface.hdl"
8 : namespace com { namespace sun { namespace star { namespace xml { namespace dom { class XNodeList; } } } } }
9 : #include "com/sun/star/xml/xpath/XPathObjectType.hdl"
10 : #include "com/sun/star/uno/Reference.h"
11 : #include "cppu/macros.hxx"
12 : #include "rtl/ustring.hxx"
13 : #include "sal/types.h"
14 :
15 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
16 :
17 : namespace com { namespace sun { namespace star { namespace xml { namespace xpath {
18 :
19 64010 : class SAL_NO_VTABLE XXPathObject : public css::uno::XInterface
20 : {
21 : public:
22 :
23 : // Methods
24 : virtual css::xml::xpath::XPathObjectType SAL_CALL getObjectType() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
25 : virtual ::com::sun::star::uno::Reference< css::xml::dom::XNodeList > SAL_CALL getNodeList() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
26 : virtual ::sal_Bool SAL_CALL getBoolean() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
27 : virtual ::sal_Int8 SAL_CALL getByte() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
28 : virtual ::sal_Int16 SAL_CALL getShort() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
29 : virtual ::sal_Int32 SAL_CALL getLong() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
30 : virtual ::sal_Int64 SAL_CALL getHyper() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
31 : virtual float SAL_CALL getFloat() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
32 : virtual double SAL_CALL getDouble() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
33 : virtual ::rtl::OUString SAL_CALL getString() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
34 :
35 : static inline ::com::sun::star::uno::Type const & SAL_CALL static_type(void * = 0);
36 :
37 : protected:
38 64010 : ~XXPathObject() throw () {} // avoid warnings about virtual members and non-virtual dtor
39 : };
40 :
41 :
42 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::xml::xpath::XXPathObject const *);
43 : } } } } }
44 :
45 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const ::com::sun::star::uno::Reference< css::xml::xpath::XXPathObject > *) SAL_THROW(());
46 :
47 : #endif
|