mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-30 08:38:15 +01:00
ErrorHandler corrections
This commit is contained in:
parent
fd7afeafbe
commit
98266212e2
1 changed files with 3 additions and 2 deletions
|
@ -62,6 +62,7 @@ public:
|
|||
typedef basic_DTDHandler<stringT> DTDHandlerT;
|
||||
typedef basic_ContentHandler<stringT> ContentHandlerT;
|
||||
typedef basic_InputSource<stringT> InputSourceT;
|
||||
typedef basic_ErrorHandler<stringT> ErrorHandlerT;
|
||||
|
||||
virtual ~basic_XMLReader() { }
|
||||
|
||||
|
@ -237,7 +238,7 @@ public:
|
|||
* @param handler The error handler.
|
||||
* @see #getErrorHandler
|
||||
*/
|
||||
virtual void setErrorHandler(SAX::ErrorHandler& handler) = 0;
|
||||
virtual void setErrorHandler(ErrorHandlerT& handler) = 0;
|
||||
/**
|
||||
* Return the current error handler.
|
||||
*
|
||||
|
@ -245,7 +246,7 @@ public:
|
|||
* has been registered.
|
||||
* @see #setErrorHandler
|
||||
*/
|
||||
virtual SAX::ErrorHandler* getErrorHandler() const = 0;
|
||||
virtual ErrorHandlerT* getErrorHandler() const = 0;
|
||||
|
||||
//////////////////////////////////////////////////
|
||||
// Parsing
|
||||
|
|
Loading…
Add table
Reference in a new issue