| 959 | |
| 960 | |
| 961 | const XMLElement* XMLNode::NextSiblingElement( const char* name ) const |
| 962 | { |
| 963 | for( const XMLNode* node = _next; node; node = node->_next ) { |
| 964 | const XMLElement* element = node->ToElementWithName( name ); |
| 965 | if ( element ) { |
| 966 | return element; |
| 967 | } |
| 968 | } |
| 969 | return 0; |
| 970 | } |
| 971 | |
| 972 | |
| 973 | const XMLElement* XMLNode::PreviousSiblingElement( const char* name ) const |
no test coverage detected