|
Unicorn XML Toolkit Version 1.00.00 |
|||||||||
� PREV CLASS �� NEXT CLASS | FRAMES��NO FRAMES | |||||||||
SUMMARY: � CONSTR �|� FUNCTION �|�DATA | DETAIL: � CONSTR �|� FUNCTION �|�DATA |
class IDocumentType: virtual public INode { public: IDocumentType(); virtual ~IDocumentType(); public: virtual CString GetName() = 0; virtual XNamedNodeMap GetEntities() = 0; virtual XNamedNodeMap GetNotations() = 0; };
The container for information related to DTD.
This class implements
the C++ binding for the
DocumentType
interface
specified by DOM.
INamedNodeMap
Constructor/Destructor Summary | |
IDocumentType
();
����������Constructs the document type. |
|
~IDocumentType
();
����������Destroys the document type. |
Function Summary | |
CString
|
GetName
();
����������Returns the name of this document type. |
XNamedNodeMap
|
GetEntities
();
����������Returns the map of entity nodes defined by this document type. |
XNamedNodeMap
|
GetNotations
();
����������Returns the map of notation nodes defined by this document type. |
Constructor/Destructor Detail |
IDocumentType();
Constructs the document type.
virtual ~IDocumentType();
Destroys the document type.
Function Detail |
virtual CString GetName() = 0;
Returns the name of this document type.
This method implements C++ binding for the
name
attribute specified by DOM.
virtual XNamedNodeMap GetEntities() = 0;
Returns the map of entity nodes defined by this document type.
This method implements C++ binding for the
entities
attribute specified by DOM.
virtual XNamedNodeMap GetNotations() = 0;
Returns the map of notation nodes defined by this document type.
This method implements C++ binding for the
notations
attribute specified by DOM.
|
Unicorn XML Toolkit Version 1.00.00 |
|||||||||
� PREV CLASS �� NEXT CLASS | FRAMES��NO FRAMES | |||||||||
SUMMARY: � CONSTR �|� FUNCTION �|�DATA | DETAIL: � CONSTR �|� FUNCTION �|�DATA |