mirror of
https://github.com/GerbilSoft/rom-properties.git
synced 2025-06-18 11:35:38 -04:00

TODO: - Add the 'd' postfix to the debug DLL. - Configure PugiXML options and hide them from the user, since these are configured by rom-properties.
17 lines
331 B
C++
Vendored
17 lines
331 B
C++
Vendored
#include "pugixml.hpp"
|
|
|
|
#include <iostream>
|
|
|
|
int main()
|
|
{
|
|
// tag::code[]
|
|
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;
|
|
// end::code[]
|
|
}
|
|
|
|
// vim:et
|