无法在setAttribute中传递字符串

时间:2013-07-11 21:25:42

标签: c++ tinyxml

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&)'

无论如何我需要设置属性。

1 个答案:

答案 0 :(得分:3)

你忘记了#define TIXML_USE_STL吗?