Lines Matching defs:TiXmlText

88 class TiXmlText;
146 virtual bool Visit( const TiXmlText& /*text*/ ) { return true; }
701 virtual const TiXmlText* ToText() const { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
708 virtual TiXmlText* ToText() { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
1090 and concise, GetText() is limited compared to getting the TiXmlText child
1093 If the first child of 'this' is a TiXmlText, the GetText()
1212 class TiXmlText : public TiXmlNode
1220 TiXmlText (const char * initValue ) : TiXmlNode (TiXmlNode::TINYXML_TEXT)
1225 virtual ~TiXmlText() {}
1229 TiXmlText( const std::string& initValue ) : TiXmlNode (TiXmlNode::TINYXML_TEXT)
1236 TiXmlText( const TiXmlText& copy ) : TiXmlNode( TiXmlNode::TINYXML_TEXT ) { copy.CopyTo( this ); }
1237 TiXmlText& operator=( const TiXmlText& base ) { base.CopyTo( this ); return *this; }
1249 virtual const TiXmlText* ToText() const { return this; } ///< Cast to a more defined type. Will return null not of the requested type.
1250 virtual TiXmlText* ToText() { return this; } ///< Cast to a more defined type. Will return null not of the requested type.
1259 void CopyTo( TiXmlText* target ) const;
1689 /** Return the handle as a TiXmlText. This may return null.
1691 TiXmlText* ToText() const { return ( ( node && node->ToText() ) ? node->ToText() : 0 ); }
1705 Return the handle as a TiXmlText. This may return null.
1707 TiXmlText* Text() const { return ToText(); }
1750 virtual bool Visit( const TiXmlText& text );