From 5e4681d3dadadfd24c8148f82abc1b7eb951115a Mon Sep 17 00:00:00 2001 From: "arseny.kapoulkine" Date: Thu, 8 Jul 2010 18:09:25 +0000 Subject: docs: Added saving documentation with some samples git-svn-id: http://pugixml.googlecode.com/svn/trunk@577 99668b35-9821-0410-8761-19e4c4f06640 --- docs/samples/save_file.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 docs/samples/save_file.cpp (limited to 'docs/samples/save_file.cpp') diff --git a/docs/samples/save_file.cpp b/docs/samples/save_file.cpp new file mode 100644 index 0000000..44bcfd1 --- /dev/null +++ b/docs/samples/save_file.cpp @@ -0,0 +1,15 @@ +#include "pugixml.hpp" + +#include + +int main() +{ + // get a test document + pugi::xml_document doc; + doc.load("hey"); + + //[code_save_file + // save document to file + std::cout << "Saving result: " << doc.save_file("save_file_output.xml") << std::endl; + //] +} -- cgit v1.2.3