Home | History | Annotate | Download | only in tinyxml

Lines Matching refs:TiXmlDocument

83 class TiXmlDocument;
122 Generally Accept() is called on the TiXmlDocument, although all nodes suppert Visiting.
134 virtual bool VisitEnter( const TiXmlDocument& /*doc*/ ) { return true; }
136 virtual bool VisitExit( const TiXmlDocument& /*doc*/ ) { return true; }
198 friend class TiXmlDocument;
231 Generally, the row and column value will be set when the TiXmlDocument::Load(),
232 TiXmlDocument::LoadFile(), or any TiXmlNode::Parse() is called. It will NOT be set
240 can be disabled if TiXmlDocument::SetTabSize() is called with 0 as the value.
242 @sa TiXmlDocument::SetTabSize()
425 friend class TiXmlDocument;
449 A TiXmlDocument will read nodes until it reads a root element, and
689 const TiXmlDocument* GetDocument() const;
690 TiXmlDocument* GetDocument() {
691 return const_cast< TiXmlDocument* >( (const_cast< const TiXmlNode* >(this))->GetDocument() );
697 virtual const TiXmlDocument* ToDocument() const { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
704 virtual TiXmlDocument* ToDocument() { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
877 void SetDocument( TiXmlDocument* doc ) { document = doc; }
883 TiXmlDocument* document; // A pointer back to a document, for error reporting.
1393 class TiXmlDocument : public TiXmlNode
1397 TiXmlDocument();
1399 TiXmlDocument( const char * documentName );
1403 TiXmlDocument( const std::string& documentName );
1406 TiXmlDocument( const TiXmlDocument& copy );
1407 TiXmlDocument& operator=( const TiXmlDocument& copy );
1409 virtual ~TiXmlDocument() {}
1497 TiXmlDocument doc;
1532 virtual const TiXmlDocument* ToDocument() const { return this; } ///< Cast to a more defined type. Will return null not of the requested type.
1533 virtual TiXmlDocument* ToDocument() { return this; } ///< Cast to a more defined type. Will return null not of the requested type.
1547 void CopyTo( TiXmlDocument* target ) const;
1743 virtual bool VisitEnter( const TiXmlDocument& doc );
1744 virtual bool VisitExit( const TiXmlDocument& doc );