blob: 3e77f04cfebeae56d6843cde4c09a7f19a3ed739 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "pugixml.hpp"
#include <iostream>
int main()
{
//[code_load_file
pugi::xml_document doc;
pugi::xml_parse_result result = doc.load_file("tree.xml");
std::cout << "Load result: " << result.description() << ", mesh name: " << doc.child("mesh").attribute("name").value() << std::endl;
//]
}
// vim:et
|