summaryrefslogtreecommitdiff
path: root/docs/samples/save_file.cpp
blob: 44bcfd19d0909e2ebd1cf0b071dbb5865705000c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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;
	//]
}