| 339 | } |
| 340 | |
| 341 | const 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 | |
| 354 | const TiXmlNode* TiXmlNode::IterateChildren(const char* val, const TiXmlNode* previous) const |
| 355 | { |
no test coverage detected