blob: eba18635cf8a48846b60d2061a580aa4683f45b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "pugixml.hpp"
#include <iostream>
int main()
{
// get a test document
pugi::xml_document doc;
doc.load_string("<foo bar='baz'><call>hey</call></foo>");
//[code_save_stream
// save document to standard output
std::cout << "Document:\n";
doc.save(std::cout);
//]
}
// vim:et
|