rapidxml
Public Member Functions
xml_document< Ch > Class Template Reference

Inherits xml_node< Ch >, and memory_pool< Ch >.

List of all members.

Public Member Functions


Detailed Description

template<class Ch = char>
class rapidxml::xml_document< Ch >

This class represents root of the DOM hierarchy. It is also an xml_node and a memory_pool through public inheritance. Use parse() function to build a DOM tree from a zero-terminated XML text string. parse() function allocates memory for nodes and attributes by using functions of xml_document, which are inherited from memory_pool. To access root node of the document, use the document itself, as if it was an xml_node.

Parameters:
ChCharacter type to use.