xml_reference
Copyright (C) 2005 IENT-RWTH Aachen
Pseudo-reference of a XML node
Subclasses
xml_cast_reference
Remarks
This class is given back by non-const node access on xml_tree. Use it like a xml_node class.
Groups
Constructors | |
![]() |
Builds an instance of the object |
Assignment | |
![]() |
Assignment Operator |
Operators | |
![]() |
Node access |
![]() |
Node access |
Operations | |
![]() |
Attributes access |
![]() |
Data access |
![]() |
Searches the first node |
![]() |
Searches the first node which name satifies the predicate |
![]() |
Name access |
![]() |
Inserts after the last node |
Example
XMLTree xml; xml.push_back("root"); XMLTree::reference x = xml.front(); x.push_back("first"); x.push_back("second");
See Also