Home | History | Annotate | Download | only in tinyxml

Lines Matching refs:TiXmlUnknown

88 class TiXmlUnknown;
639 const TiXmlUnknown* ToUnknown() const { return ( this && type == UNKNOWN ) ? (const TiXmlUnknown*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
646 TiXmlUnknown* ToUnknown() { return ( this && type == UNKNOWN ) ? (TiXmlUnknown*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
1188 class TiXmlUnknown : public TiXmlNode
1191 TiXmlUnknown() : TiXmlNode( TiXmlNode::UNKNOWN ) {}
1192 virtual ~TiXmlUnknown() {}
1194 TiXmlUnknown( const TiXmlUnknown& copy ) : TiXmlNode( TiXmlNode::UNKNOWN ) { copy.CopyTo( this ); }
1195 void operator=( const TiXmlUnknown& copy ) { copy.CopyTo( this ); }
1205 void CopyTo( TiXmlUnknown* target ) const;
1499 /// Return the handle as a TiXmlUnknown. This may return null;
1500 TiXmlUnknown* Unknown() const { return ( ( node && node->ToUnknown() ) ? node->ToUnknown() : 0 ); }