Does anyone have code to iterate through the nodes of a subtree in TinyXML? IE: Given a parent, iterate through all its children and all of its children's children?
+1
A:
You can use Visitor pattern implementation in the library. Create a class inherited from TiXmlVistor, override necessary methods like VisitElement, then call Accept() method for a particular node.
Begemoth
2010-10-11 09:04:39
Not quite what i was asking for
Raindog
2010-10-14 02:59:15