| 365 | } |
| 366 | |
| 367 | const TiXmlNode* TiXmlNode::NextSibling(const char* _value) const |
| 368 | { |
| 369 | const TiXmlNode* node; |
| 370 | for (node = next; node; node = node->next) |
| 371 | { |
| 372 | if (xr_strcmp(node->Value(), _value) == 0) |
| 373 | return node; |
| 374 | } |
| 375 | return 0; |
| 376 | } |
| 377 | |
| 378 | const TiXmlNode* TiXmlNode::PreviousSibling(const char* _value) const |
| 379 | { |
no test coverage detected