| 406 | |
| 407 | |
| 408 | const TiXmlNode* TiXmlNode::NextSibling( const char * _value ) const |
| 409 | { |
| 410 | const TiXmlNode* node; |
| 411 | for ( node = next; node; node = node->next ) |
| 412 | { |
| 413 | if ( strcmp( node->Value(), _value ) == 0 ) |
| 414 | return node; |
| 415 | } |
| 416 | return 0; |
| 417 | } |
| 418 | |
| 419 | |
| 420 | const TiXmlNode* TiXmlNode::PreviousSibling( const char * _value ) const |
no test coverage detected