0
0
mirror of https://github.com/zeux/pugixml.git synced 2025-01-04 02:25:23 +08:00
pugixml/tests/main.cpp
2009-10-10 20:14:04 +00:00

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? :)
}