Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_XML_SAX_XFASTPARSER_HDL
2 : #define INCLUDED_COM_SUN_STAR_XML_SAX_XFASTPARSER_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/io/IOException.hdl"
7 : #include "com/sun/star/lang/IllegalArgumentException.hdl"
8 : #include "com/sun/star/lang/Locale.hdl"
9 : #include "com/sun/star/uno/RuntimeException.hdl"
10 : #include "com/sun/star/uno/XInterface.hdl"
11 : #include "com/sun/star/xml/sax/InputSource.hdl"
12 : #include "com/sun/star/xml/sax/SAXException.hdl"
13 : namespace com { namespace sun { namespace star { namespace xml { namespace sax { class XEntityResolver; } } } } }
14 : namespace com { namespace sun { namespace star { namespace xml { namespace sax { class XErrorHandler; } } } } }
15 : namespace com { namespace sun { namespace star { namespace xml { namespace sax { class XFastDocumentHandler; } } } } }
16 : namespace com { namespace sun { namespace star { namespace xml { namespace sax { class XFastTokenHandler; } } } } }
17 : #include "com/sun/star/uno/Reference.h"
18 : #include "cppu/macros.hxx"
19 : #include "rtl/ustring.hxx"
20 : #include "sal/types.h"
21 :
22 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
23 :
24 : namespace com { namespace sun { namespace star { namespace xml { namespace sax {
25 :
26 2017 : class SAL_NO_VTABLE XFastParser : public css::uno::XInterface
27 : {
28 : public:
29 :
30 : // Methods
31 : 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;
32 : virtual void SAL_CALL setFastDocumentHandler( const ::com::sun::star::uno::Reference< css::xml::sax::XFastDocumentHandler >& Handler ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
33 : virtual void SAL_CALL setTokenHandler( const ::com::sun::star::uno::Reference< css::xml::sax::XFastTokenHandler >& Handler ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
34 : virtual void SAL_CALL registerNamespace( const ::rtl::OUString& NamespaceURL, ::sal_Int32 NamespaceToken ) /* throw (css::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException) */ = 0;
35 : virtual void SAL_CALL setErrorHandler( const ::com::sun::star::uno::Reference< css::xml::sax::XErrorHandler >& Handler ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
36 : virtual void SAL_CALL setEntityResolver( const ::com::sun::star::uno::Reference< css::xml::sax::XEntityResolver >& Resolver ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
37 : virtual void SAL_CALL setLocale( const css::lang::Locale& locale ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
38 : virtual ::rtl::OUString SAL_CALL getNamespaceURL( const ::rtl::OUString& prefix ) /* throw (css::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException) */ = 0;
39 :
40 : static inline ::com::sun::star::uno::Type const & SAL_CALL static_type(void * = 0);
41 :
42 : protected:
43 2017 : ~XFastParser() throw () {} // avoid warnings about virtual members and non-virtual dtor
44 : };
45 :
46 :
47 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::xml::sax::XFastParser const *);
48 : } } } } }
49 :
50 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const ::com::sun::star::uno::Reference< css::xml::sax::XFastParser > *) SAL_THROW(());
51 :
52 : #endif
|