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