我认为问题出在使用函数或其他错误上。
这部分代码正在运行,但结果并不好。
TiXmlElement* e = hDoc.FirstChildElement().Element(); // think problem is there
while (e)
{
e = e->NextSiblingElement(); //or may be there
count++;
}
计数的结果是 1。
xml文件是:
<doc>
<state> ... </state>
<state> ... </state>
...
</doc>
找不到工作示例。