MCPcopy Create free account
hub / github.com/DFHack/dfhack / IterateChildren

Method IterateChildren

depends/tinyxml/tinyxml.cpp:385–396  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

383
384
385const TiXmlNode* TiXmlNode::IterateChildren( const TiXmlNode* previous ) const
386{
387 if ( !previous )
388 {
389 return FirstChild();
390 }
391 else
392 {
393 assert( previous->parent == this );
394 return previous->NextSibling();
395 }
396}
397
398
399const TiXmlNode* TiXmlNode::IterateChildren( const char * val, const TiXmlNode* previous ) const

Callers

nothing calls this directly

Calls 1

NextSiblingMethod · 0.45

Tested by

no test coverage detected