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