Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_XML_SAX_XPARSER_HDL
2 : #define INCLUDED_COM_SUN_STAR_XML_SAX_XPARSER_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/io/IOException.hdl"
7 : #include "com/sun/star/lang/Locale.hdl"
8 : #include "com/sun/star/uno/RuntimeException.hdl"
9 : #include "com/sun/star/uno/XInterface.hdl"
10 : #include "com/sun/star/xml/sax/InputSource.hdl"
11 : #include "com/sun/star/xml/sax/SAXException.hdl"
12 : namespace com { namespace sun { namespace star { namespace xml { namespace sax { class XDTDHandler; } } } } }
13 : namespace com { namespace sun { namespace star { namespace xml { namespace sax { class XDocumentHandler; } } } } }
14 : namespace com { namespace sun { namespace star { namespace xml { namespace sax { class XEntityResolver; } } } } }
15 : namespace com { namespace sun { namespace star { namespace xml { namespace sax { class XErrorHandler; } } } } }
16 : #include "com/sun/star/uno/Reference.h"
17 : #include "cppu/macros.hxx"
18 :
19 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
20 :
21 : namespace com { namespace sun { namespace star { namespace xml { namespace sax {
22 :
23 5681 : class SAL_NO_VTABLE XParser : public css::uno::XInterface
24 : {
25 : public:
26 :
27 : // Methods
28 : virtual void SAL_CALL parseStream( const css::xml::sax::InputSource& aInputSource ) /* throw (css::xml::sax::SAXException, css::io::IOException, ::com::sun::star::uno::RuntimeException) */ = 0;
29 : virtual void SAL_CALL setDocumentHandler( const ::com::sun::star::uno::Reference< css::xml::sax::XDocumentHandler >& xHandler ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
30 : virtual void SAL_CALL setErrorHandler( const ::com::sun::star::uno::Reference< css::xml::sax::XErrorHandler >& xHandler ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
31 : virtual void SAL_CALL setDTDHandler( const ::com::sun::star::uno::Reference< css::xml::sax::XDTDHandler >& xHandler ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
32 : virtual void SAL_CALL setEntityResolver( const ::com::sun::star::uno::Reference< css::xml::sax::XEntityResolver >& xResolver ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
33 : virtual void SAL_CALL setLocale( const css::lang::Locale& locale ) /* 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 5681 : ~XParser() 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::sax::XParser const *);
43 : } } } } }
44 :
45 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const ::com::sun::star::uno::Reference< css::xml::sax::XParser > *) SAL_THROW(());
46 :
47 : #endif
|