1
TiXmlElement * book = new TiXmlElement( "book" );  
    root->LinkEndChild( book );  
    string str1="name";
    const string str2=catalog[i].id();
    book->SetAttribute(str1,str2);

[Error] no matching function for call to 'TiXmlElement::SetAttribute(std::string&, const string&)' のようなエラーが発生します

とにかく属性を設定する必要があります。

4

1 に答える 1

3

するのを忘れました#define TIXML_USE_STLか?

于 2013-07-11T21:31:58.763 に答える