mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-30 08:38:15 +01:00
Fixes:
* References to DTDHandler and ContentHandler changed to DTDHandlerT and ContentHandlerT. (They were referencing the std::string versions.)
This commit is contained in:
parent
5f09c096a8
commit
481a59a813
1 changed files with 2 additions and 2 deletions
|
@ -158,14 +158,14 @@ public:
|
||||||
* @return The current DTD handler, or null if none was set.
|
* @return The current DTD handler, or null if none was set.
|
||||||
* @see basic_XMLReader#getDTDHandler
|
* @see basic_XMLReader#getDTDHandler
|
||||||
*/
|
*/
|
||||||
virtual DTDHandler* getDTDHandler() const { return dtdHandler_; }
|
virtual DTDHandlerT* getDTDHandler() const { return dtdHandler_; }
|
||||||
/**
|
/**
|
||||||
* Set the content event handler.
|
* Set the content event handler.
|
||||||
*
|
*
|
||||||
* @param handler The new content handler.
|
* @param handler The new content handler.
|
||||||
* @see basic_XMLReader#setContentHandler
|
* @see basic_XMLReader#setContentHandler
|
||||||
*/
|
*/
|
||||||
virtual void setContentHandler(ContentHandler& handler) { contentHandler_ = &handler; }
|
virtual void setContentHandler(ContentHandlerT& handler) { contentHandler_ = &handler; }
|
||||||
/**
|
/**
|
||||||
* Get the content event handler.
|
* Get the content event handler.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Add table
Reference in a new issue