00001 #ifndef SDXDOCUMENT_H 00002 #define SDXDOCUMENT_H 00003 00004 #include "SDXNodeContainer.h" 00005 00006 namespace SDX { 00007 class Node; 00008 00012 class Document : public NodeContainer { 00013 public: 00017 Document(){} 00018 00023 Document(Document& other); 00024 00029 Document(Document* other); 00030 00036 void sendToContentHandler(ContentHandler* contentHandler, bool onlySendContents = false); 00037 }; 00038 } 00039 00040 #endif
1.5.8