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