mirror of
https://github.com/zeux/pugixml.git
synced 2025-01-04 02:25:23 +08:00
52aa5325f3
git-svn-id: http://pugixml.googlecode.com/svn/trunk@138 99668b35-9821-0410-8761-19e4c4f06640
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? :)
|
|
}
|