| 780 | const XMLElement* FirstChildElement( const char* name = 0 ) const; |
| 781 | |
| 782 | XMLElement* FirstChildElement( const char* name = 0 ) { |
| 783 | return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->FirstChildElement( name )); |
| 784 | } |
| 785 | |
| 786 | /// Get the last child node, or null if none exists. |
| 787 | const XMLNode* LastChild() const { |
no test coverage detected