tools/navgenproj/TiXml.h Source File
Go to the documentation of this file.
18 bool SameValue(
const char* a,
const char* b);
20 bool HasName(TiXmlNode* node,
const char* name);
21 const char* GetName(TiXmlNode* node);
23 bool HasValue(TiXmlNode* node);
24 bool HasValue(TiXmlNode* node,
const char* value);
25 bool HasValue(TiXmlNode* node,
const std::string& value);
27 const char* GetValue(TiXmlNode* node);
28 void CreateValue(TiXmlNode* node,
const char* value);
30 TiXmlNode* CreateChild(TiXmlNode* node,
const char* name);
31 TiXmlNode* GetChild(TiXmlNode* node,
const char* name);
33 TiXmlNode* FirstChild(TiXmlNode* node);
34 TiXmlNode* NextSibling(TiXmlNode* node);
36 bool IsElement(TiXmlNode* node);
38 TiXmlDocument* CreateDoc(
const char* path);
39 void DestroyDoc(TiXmlDocument* doc);
41 bool LoadDoc(TiXmlDocument* doc);
42 bool SaveDoc(TiXmlDocument* doc);