#include <judo.hpp>
Inheritance diagram for judo::ElementStreamEventListener:
Public Member Functions | |
virtual void | onDocumentStart (Element *e)=0 |
Event point for XML document start event. | |
virtual void | onElement (Element *e)=0 |
Event point for immediate children of XML document root. | |
virtual void | onCDATA (CDATA *c) |
Event point for immediate CDATA of an XML document root. | |
virtual void | onDocumentEnd ()=0 |
Event point for XML document end event. |
Definition at line 343 of file judo.hpp.
|
Event point for immediate CDATA of an XML document root. Override this method to get notified when CDATA is encountered immediately below the root document. This is a fairly rare condition within most Jabber processing, but is required for those rare cases. If you don't override this method, the CDATA is automatically cleaned up for you.
Reimplemented in jabberoo::Session. |
|
Event point for XML document end event. Override this method to get notified when the XML document is ending Implemented in jabberoo::Session. |
|
Event point for XML document start event. Override this method to get notified when the XML document is starting
Implemented in jabberoo::Session. |
|
Event point for immediate children of XML document root. Override this method to get notified when a complete child Element has been parsed.
Implemented in jabberoo::Session. |