mirror of
https://github.com/zeux/pugixml.git
synced 2025-01-01 00:37:48 +08:00
11 lines
188 B
C++
11 lines
188 B
C++
|
#include "../src/pugixml.hpp"
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
pugi::xml_document doc;
|
||
|
doc.load("<node/>");
|
||
|
doc.select_single_node("node");
|
||
|
|
||
|
// doc.select_single_node("//"); - fails? why? :)
|
||
|
}
|