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