#include <qgarlib/sax/DTDHandler.H>
Inheritance diagram for qgxml::DTDHandler:

If a SAX application needs information about notations and unparsed entities, then the application implements this interface and registers an instance with the SAX parser using the parser's setDTDHandler method. The parser uses the instance to report notation and unparsed entity declarations to the application.
This class is an adaptation for C++ of the interface of the same name implemented in the Java SAX API (http://www.saxproject.org).
Definition at line 69 of file DTDHandler.H.
Public Member Functions | |
| virtual void | notationDecl (const std::string &name, const std::string &publicId, const std::string &systemId)=0 |
| Receive notification of a notation declaration event. | |
| virtual void | unparsedEntityDecl (const std::string &name, const std::string &publicId, const std::string &systemId, const std::string ¬ationName)=0 |
| Receive notification of an unparsed entity declaration event. | |
Destructors | |
| virtual | ~DTDHandler () |
| Destructor. | |
|
|
Destructor.
Definition at line 82 of file DTDHandler.H. |
|
||||||||||||||||
|
Receive notification of a notation declaration event.
Implemented in qgxml::DefaultHandler. Referenced by qgxml::XercesQgarDTDHandlerAdaptor::notationDecl(), and qgxml::QtQgarDTDHandlerAdaptor::notationDecl(). |
|
||||||||||||||||||||
|
Receive notification of an unparsed entity declaration event.
Implemented in qgxml::DefaultHandler. Referenced by qgxml::XercesQgarDTDHandlerAdaptor::unparsedEntityDecl(), and qgxml::QtQgarDTDHandlerAdaptor::unparsedEntityDecl(). |