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