| 984 | |
| 985 | |
| 986 | const XMLElement* XMLNode::NextSiblingElement( const char* name ) const |
| 987 | { |
| 988 | for( const XMLNode* node = _next; node; node = node->_next ) { |
| 989 | const XMLElement* element = node->ToElementWithName( name ); |
| 990 | if ( element ) { |
| 991 | return element; |
| 992 | } |
| 993 | } |
| 994 | return 0; |
| 995 | } |
| 996 | |
| 997 | |
| 998 | const XMLElement* XMLNode::PreviousSiblingElement( const char* name ) const |
no test coverage detected