| 747 | const XMLElement* PreviousSiblingElement( const char* value=0 ) const ; |
| 748 | |
| 749 | XMLElement* PreviousSiblingElement( const char* value=0 ) { |
| 750 | return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->PreviousSiblingElement( value ) ); |
| 751 | } |
| 752 | |
| 753 | /// Get the next (right) sibling node of this node. |
| 754 | const XMLNode* NextSibling() const { |
nothing calls this directly
no test coverage detected