MCPcopy Create free account
hub / github.com/OGSR/OGSR-Engine / IterateChildren

Method IterateChildren

ogsr_engine/xrCore/XML_Parser/tinyxml.cpp:341–352  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

339}
340
341const TiXmlNode* TiXmlNode::IterateChildren(const TiXmlNode* previous) const
342{
343 if (!previous)
344 {
345 return FirstChild();
346 }
347 else
348 {
349 assert(previous->parent == this);
350 return previous->NextSibling();
351 }
352}
353
354const TiXmlNode* TiXmlNode::IterateChildren(const char* val, const TiXmlNode* previous) const
355{

Callers 1

NavigateToNodeMethod · 0.45

Calls 1

NextSiblingMethod · 0.45

Tested by

no test coverage detected