Searched defs:TiXmlText (Results 1 - 1 of 1) sorted by relevance

/external/tinyxml/
H A Dtinyxml.h90 class TiXmlText;
640 const TiXmlText* ToText() const { return ( this && type == TEXT ) ? (const TiXmlText*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
647 TiXmlText* ToText() { return ( this && type == TEXT ) ? (TiXmlText*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
954 and concise, GetText() is limited compared to getting the TiXmlText child
957 If the first child of 'this' is a TiXmlText, the GetText()
1061 class TiXmlText : public TiXmlNode class in inherits:TiXmlNode
1069 TiXmlText (const char * initValue ) : TiXmlNode (TiXmlNode::TEXT) function in class:TiXmlText
1074 virtual ~TiXmlText() {}
1078 TiXmlText( const std::string& initValue ) : TiXmlNode (TiXmlNode::TEXT) function in class:TiXmlText
1085 TiXmlText( const TiXmlText& copy ) : TiXmlNode( TiXmlNode::TEXT ) { copy.CopyTo( this ); } function in class:TiXmlText
[all...]

Completed in 16 milliseconds