18 lines
325 B
C++
Raw Normal View History

2022-04-07 18:46:57 +02:00
#include "pugixml.hpp"
#include <iostream>
int main()
{
// get a test document
pugi::xml_document doc;
doc.load_string("<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