0
它是如何使用where()函數的?rapidxml使用where()函數
using namespace rapidxml;
xml_document<> doc;
std:string xmlfile = "test.xml";
std::ifstream file (xmlfile);
std::stringstream buffer;
buffer << file.rdbuf ();
file.close ();
std::string content (buffer.str ());
try
{
doc.parse<0> (&content [ 0 ]);
}
catch (rapidxml::parse_error& e)
{
std::cout << "Parsing error: " << e.what () << "\n";
//const Ch* e.where ();
}
得到了什麼(),但正在尋找某種指標從哪裏()像打破了XML的最後一個節點?