TiXmlElement * book = new TiXmlElement( "book" );
root->LinkEndChild( book );
string str1="name";
const string str2=catalog[i].id();
book->SetAttribute(str1,str2);
我得到的错误就像
[错误]没有匹配函数来调用'TiXmlElement :: SetAttribute(std :: string&,const string&)'
无论如何我需要设置属性。
答案 0 :(得分:3)
你忘记了#define TIXML_USE_STL
吗?