Rudiments
|
Inherited by xmldom.
Public Member Functions | |
xmlsax () | |
virtual | ~xmlsax () |
virtual bool | parseFile (const char *filename) |
virtual bool | parseString (const char *string) |
const char * | getError () |
Protected Member Functions | |
virtual bool | tagStart (const char *ns, const char *name) |
virtual bool | attributeName (const char *name) |
virtual bool | attributeValue (const char *value) |
virtual bool | text (const char *string) |
virtual bool | tagEnd (const char *ns, const char *name) |
virtual bool | comment (const char *string) |
virtual bool | cdata (const char *string) |
The xmlsax class is a base class for an XML SAX parser. To use this class, you should create a class that inherits from it and implements the virtual methods.
xmlsax::xmlsax | ( | ) |
Creates an instance of the xmlsax class.
|
virtual |
Deletes this instance of the xmlsax class.
|
protectedvirtual |
Gets called when an attribute name is parsed.
|
protectedvirtual |
Gets called when an attribute value is parsed.
|
protectedvirtual |
Gets called when cdata is parsed.
|
protectedvirtual |
Gets called when a comment is parsed.
const char* xmlsax::getError | ( | ) |
If parseFile() or parseString() fails, this method returns the error that caused the failure.
|
virtual |
Parses file "filename" and calls the appropriate callback when tags, attributes, text, etc. are encountered.
Returns true on success or false otherwise.
Reimplemented in xmldom.
|
virtual |
Parses "string" and calls the appropriate callback when tags, attributes, text, etc. are encountered.
Returns true on success or false otherwise.
Reimplemented in xmldom.
|
protectedvirtual |
Gets called when an end tag is parsed.
|
protectedvirtual |
Gets called when a start tag is parsed.
|
protectedvirtual |
Gets called when a block of text is parsed.