Home | History | Annotate | Download | only in tinyxml

Lines Matching refs:TiXmlUnknown

86 class TiXmlUnknown;
150 virtual bool Visit( const TiXmlUnknown& /*unknown*/ ) { return true; }
700 virtual const TiXmlUnknown* ToUnknown() const { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
707 virtual TiXmlUnknown* ToUnknown() { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
1354 class TiXmlUnknown : public TiXmlNode
1357 TiXmlUnknown() : TiXmlNode( TiXmlNode::TINYXML_UNKNOWN ) {}
1358 virtual ~TiXmlUnknown() {}
1360 TiXmlUnknown( const TiXmlUnknown& copy ) : TiXmlNode( TiXmlNode::TINYXML_UNKNOWN ) { copy.CopyTo( this ); }
1361 TiXmlUnknown& operator=( const TiXmlUnknown& copy ) { copy.CopyTo( this ); return *this; }
1370 virtual const TiXmlUnknown* ToUnknown() const { return this; } ///< Cast to a more defined type. Will return null not of the requested type.
1371 virtual TiXmlUnknown* ToUnknown() { return this; } ///< Cast to a more defined type. Will return null not of the requested type.
1378 void CopyTo( TiXmlUnknown* target ) const;
1692 /** Return the handle as a TiXmlUnknown. This may return null.
1694 TiXmlUnknown* ToUnknown() const { return ( ( node && node->ToUnknown() ) ? node->ToUnknown() : 0 ); }
1709 Return the handle as a TiXmlUnknown. This may return null.
1711 TiXmlUnknown* Unknown() const { return ToUnknown(); }
1752 virtual bool Visit( const TiXmlUnknown& unknown );