Definition at line 152 of file XmlDoc.h. References GetNodeName(). 00153 { 00154 std::cout << "Dumping children of " << GetNodeName(node) << std::endl; 00155 DOMNodeList* children = node->getChildNodes(); 00156 for (XMLSize_t i=0 ; i<children->getLength() ; i++) 00157 { 00158 DOMNode* child = children->item(i); 00159 std::cout << " " << i << " = " << GetNodeName(child) << std::endl; 00160 } 00161 }
Here is the call graph for this function:
|