| 800 | const XMLElement* LastChildElement( const char* name = 0 ) const; |
| 801 | |
| 802 | XMLElement* LastChildElement( const char* name = 0 ) { |
| 803 | return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->LastChildElement(name) ); |
| 804 | } |
| 805 | |
| 806 | /// Get the previous (left) sibling node of this node. |
| 807 | const XMLNode* PreviousSibling() const { |
nothing calls this directly
no test coverage detected