| 520 | const TiXmlNode* Parent() const { return parent; } |
| 521 | |
| 522 | const TiXmlNode* FirstChild() const { return firstChild; } ///< The first child of this node. Will be null if there are no children. |
| 523 | TiXmlNode* FirstChild() { return firstChild; } |
| 524 | const TiXmlNode* FirstChild( const char * value ) const; ///< The first child of this node with the matching 'value'. Will be null if none found. |
| 525 | /// The first child of this node with the matching 'value'. Will be null if none found. |