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