| 428 | |
| 429 | |
| 430 | const TiXmlNode* TiXmlNode::NextSibling( const char * _value ) const |
| 431 | { |
| 432 | const TiXmlNode* node; |
| 433 | for ( node = next; node; node = node->next ) |
| 434 | { |
| 435 | if ( strcmp( node->Value(), _value ) == 0 ) |
| 436 | return node; |
| 437 | } |
| 438 | return 0; |
| 439 | } |
| 440 | |
| 441 | |
| 442 | const TiXmlNode* TiXmlNode::PreviousSibling( const char * _value ) const |