| 383 | |
| 384 | |
| 385 | const 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 | |
| 399 | const TiXmlNode* TiXmlNode::IterateChildren( const char * val, const TiXmlNode* previous ) const |
nothing calls this directly
no test coverage detected