Lines Matching refs:LastChild
491 const TiXmlNode* LastChild() const { return lastChild; } /// The last child of this node. Will be null if there are no children.
492 TiXmlNode* LastChild() { return lastChild; }
493 const TiXmlNode* LastChild( const char * value ) const; /// The last child of this node matching 'value'. Will be null if there are no children.
494 TiXmlNode* LastChild( const char * value );
499 const TiXmlNode* LastChild( const std::string& _value ) const { return LastChild (_value.c_str ()); } ///< STL std::string form.
500 TiXmlNode* LastChild( const std::string& _value ) { return LastChild (_value.c_str ()); } ///< STL std::string form.
531 /** Add a new node related to this. Adds a child past the LastChild.
537 /** Add a new node related to this. Adds a child past the LastChild.
674 TiXmlNode* lastChild;