mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-06 01:15:03 -05:00
18 lines
318 B
C++
18 lines
318 B
C++
#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
|