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

/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.h86 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 class in inherits:TiXmlNode
1357 TiXmlUnknown() : TiXmlNode( TiXmlNode::TINYXML_UNKNOWN ) {} function in class:TiXmlUnknown
1358 virtual ~TiXmlUnknown() {}
1360 TiXmlUnknown( const TiXmlUnknown& copy ) : TiXmlNode( TiXmlNode::TINYXML_UNKNOWN ) { copy.CopyTo( this ); } function in class:TiXmlUnknown
1361 TiXmlUnknown
[all...]
/external/tinyxml/
H A Dtinyxml.h88 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 class in inherits:TiXmlNode
1191 TiXmlUnknown() : TiXmlNode( TiXmlNode::UNKNOWN ) {} function in class:TiXmlUnknown
1192 virtual ~TiXmlUnknown() {}
1194 TiXmlUnknown( const TiXmlUnknown function in class:TiXmlUnknown
[all...]

Completed in 611 milliseconds