| 646 | const XMLElement* FirstChildElement( const char* value=0 ) const; |
| 647 | |
| 648 | XMLElement* FirstChildElement( const char* value=0 ) { |
| 649 | return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->FirstChildElement( value )); |
| 650 | } |
| 651 | |
| 652 | /// Get the last child node, or null if none exists. |
| 653 | const XMLNode* LastChild() const { |
no test coverage detected