#include <SDXDocument.h>

Public Member Functions | |
| Document () | |
| Constructor. | |
| Document (Document &other) | |
| Copy contructor taking a reference to a document. | |
| Document (Document *other) | |
| Copy contructor taking a pointer to a document. | |
| void | sendToContentHandler (ContentHandler *contentHandler, bool onlySendContents=false) |
| Send this document (recursively) to the given contentHandler. | |
The only reason why this class exists is the sendToContentHandler method.
Definition at line 12 of file SDXDocument.h.
| Document::Document | ( | Document & | other | ) |
Copy contructor taking a reference to a document.
| other | The document of which this document should be a copy. |
Definition at line 8 of file SDXDocument.cpp.
| Document::Document | ( | Document * | other | ) |
Copy contructor taking a pointer to a document.
| other | The document of which this document should be a copy. |
Definition at line 14 of file SDXDocument.cpp.
| void Document::sendToContentHandler | ( | ContentHandler * | contentHandler, | |
| bool | onlySendContents = false | |||
| ) |
Send this document (recursively) to the given contentHandler.
| contentHandler | Content handler to send document to. | |
| onlySendContents | If set to true, contentHandler->startDocument() and contentHandler->endDocument() will not be called for this document. |
Definition at line 20 of file SDXDocument.cpp.
1.5.8