| 1016 | |
| 1017 | |
| 1018 | const XMLElement* XMLNode::NextSiblingElement( const char* name ) const |
| 1019 | { |
| 1020 | for( const XMLNode* node = _next; node; node = node->_next ) { |
| 1021 | const XMLElement* element = node->ToElementWithName( name ); |
| 1022 | if ( element ) { |
| 1023 | return element; |
| 1024 | } |
| 1025 | } |
| 1026 | return 0; |
| 1027 | } |
| 1028 | |
| 1029 | |
| 1030 | const XMLElement* XMLNode::PreviousSiblingElement( const char* name ) const |
no test coverage detected