| 816 | const XMLElement* PreviousSiblingElement( const char* name = 0 ) const ; |
| 817 | |
| 818 | XMLElement* PreviousSiblingElement( const char* name = 0 ) { |
| 819 | return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->PreviousSiblingElement( name ) ); |
| 820 | } |
| 821 | |
| 822 | /// Get the next (right) sibling node of this node. |
| 823 | const XMLNode* NextSibling() const { |
nothing calls this directly
no test coverage detected