Home | History | Annotate | Download | only in tinyxml

Lines Matching defs:Parent

376 /** The parent class for everything in the Document Object Model.
378 Nodes have siblings, a parent, and children. A node can be
483 TiXmlNode* Parent() { return parent; }
484 const TiXmlNode* Parent() const { return parent; }
506 for( child = parent->FirstChild(); child; child = child->NextSibling() )
512 while( child = parent->IterateChildren( child ) )
670 TiXmlNode* parent;