blob: 30c1aa17c8d946a7fbda74db2e504a6f99fcbb42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "pugixml.hpp"
#include <iostream>
int main()
{
// get a test document
pugi::xml_document doc;
doc.load("<foo bar='baz'>hey</foo>");
//[code_save_file
// save document to file
std::cout << "Saving result: " << doc.save_file("save_file_output.xml") << std::endl;
//]
}
// vim:et
|