rapidxml
Public Member Functions
xml_node< Ch > Class Template Reference

Inherits xml_base< Ch >.

Inherited by xml_document< Ch >.

List of all members.

Public Member Functions


Detailed Description

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

Class representing a node of XML document. Each node may have associated name and value strings, which are available through name() and value() functions. Interpretation of name and value depends on type of the node. Type of node can be determined by using type() function.

Note that after parse, both name and value of node, if any, will point interior of source text used for parsing. Thus, this text must persist in the memory for the lifetime of node.

Parameters:
ChCharacter type to use.