| 1046 | |
| 1047 | |
| 1048 | const XMLElement* XMLNode::NextSiblingElement( const char* name ) const |
| 1049 | { |
| 1050 | for( const XMLNode* node = _next; node; node = node->_next ) { |
| 1051 | const XMLElement* element = node->ToElementWithName( name ); |
| 1052 | if ( element ) { |
| 1053 | return element; |
| 1054 | } |
| 1055 | } |
| 1056 | return 0; |
| 1057 | } |
| 1058 | |
| 1059 | |
| 1060 | const XMLElement* XMLNode::PreviousSiblingElement( const char* name ) const |
no test coverage detected