Lines Matching refs:TiXmlDeclaration
89 class TiXmlDeclaration;
144 virtual bool Visit( const TiXmlDeclaration& /*declaration*/ ) { return true; }
702 virtual const TiXmlDeclaration* ToDeclaration() const { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
709 virtual TiXmlDeclaration* ToDeclaration() { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
1285 class TiXmlDeclaration : public TiXmlNode
1289 TiXmlDeclaration() : TiXmlNode( TiXmlNode::TINYXML_DECLARATION ) {}
1293 TiXmlDeclaration( const std::string& _version,
1299 TiXmlDeclaration( const char* _version,
1303 TiXmlDeclaration( const TiXmlDeclaration& copy );
1304 TiXmlDeclaration& operator=( const TiXmlDeclaration& copy );
1306 virtual ~TiXmlDeclaration() {}
1325 virtual const TiXmlDeclaration* ToDeclaration() const { return this; } ///< Cast to a more defined type. Will return null not of the requested type.
1326 virtual TiXmlDeclaration* ToDeclaration() { return this; } ///< Cast to a more defined type. Will return null not of the requested type.
1333 void CopyTo( TiXmlDeclaration* target ) const;
1749 virtual bool Visit( const TiXmlDeclaration& declaration );