| 751 | const XMLElement* FirstChildElement( const char* value=0 ) const; |
| 752 | |
| 753 | XMLElement* FirstChildElement( const char* value=0 ) { |
| 754 | return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->FirstChildElement( value )); |
| 755 | } |
| 756 | |
| 757 | /// Get the last child node, or null if none exists. |
| 758 | const XMLNode* LastChild() const { |
no test coverage detected