Lines Matching refs:TiXmlDocument
85 class TiXmlDocument;
156 friend class TiXmlDocument;
185 Generally, the row and column value will be set when the TiXmlDocument::Load(),
186 TiXmlDocument::LoadFile(), or any TiXmlNode::Parse() is called. It will NOT be set
194 can be disabled if TiXmlDocument::SetTabSize() is called with 0 as the value.
196 @sa TiXmlDocument::SetTabSize()
384 friend class TiXmlDocument;
408 A TiXmlDocument will read nodes until it reads a root element, and
630 const TiXmlDocument* GetDocument() const;
631 TiXmlDocument* GetDocument();
636 const TiXmlDocument* ToDocument() const { return ( this && type == DOCUMENT ) ? (const TiXmlDocument*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
643 TiXmlDocument* ToDocument() { return ( this && type == DOCUMENT ) ? (TiXmlDocument*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
787 void SetDocument( TiXmlDocument* doc ) { document = doc; }
793 TiXmlDocument* document; // A pointer back to a document, for error reporting.
1221 class TiXmlDocument : public TiXmlNode
1225 TiXmlDocument();
1227 TiXmlDocument( const char * documentName );
1231 TiXmlDocument( const std::string& documentName );
1234 TiXmlDocument( const TiXmlDocument& copy );
1235 void operator=( const TiXmlDocument& copy );
1237 virtual ~TiXmlDocument() {}
1319 TiXmlDocument doc;
1357 void CopyTo( TiXmlDocument* target ) const;