summaryrefslogtreecommitdiff
path: root/docs/samples/save_stream.cpp
blob: 84a33bf0fd036a0252ca7e2c03ad2c67c3509664 (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>");

    // tag::code[]
    // save document to standard output
    std::cout << "Document:\n";
    doc.save(std::cout);
    // end::code[]
}

// vim:et