我對TinyXml相當陌生,而且遇到了一些問題。我正在嘗試學習如何創建和讀取文件。 我可以從這個例子中讀取數據 <?xml version="1.0" standalone=no>
<!-- Our to do list data -->
<ToDo>
<Item priority="1"> Go to the <bold>Toy store!</bold></Item>
加載字符串 是否有可能從tinyXML文件中將字符串加載到應用程序中的字符串變量,因爲當我試圖做到這一點時,我收到了一些錯誤。 if (fall->QueryFloatAttribute("particle_texture", std::string name_) != XML_NO_ERROR)
return false;
錯誤是:「type is not allowed」。你能
在TinyXmlv1我可以 TiXmlDocument doc;
TiXmlElement * element = new TiXmlElement("Hello");
TiXmlText * text = new TiXmlText("World");
element->LinkEndChild(text);
doc.Parse("<TAGS></TAGS>"); // It OK