| 731 | const XMLElement* LastChildElement( const char* value=0 ) const; |
| 732 | |
| 733 | XMLElement* LastChildElement( const char* value=0 ) { |
| 734 | return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->LastChildElement(value) ); |
| 735 | } |
| 736 | |
| 737 | /// Get the previous (left) sibling node of this node. |
| 738 | const XMLNode* PreviousSibling() const { |
nothing calls this directly
no test coverage detected