mirror of
https://github.com/zeux/pugixml.git
synced 2024-12-27 13:33:17 +08:00
f705452537
git-svn-id: http://pugixml.googlecode.com/svn/trunk@541 99668b35-9821-0410-8761-19e4c4f06640
15 lines
317 B
C++
15 lines
317 B
C++
#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;
|
|
//]
|
|
}
|