summaryrefslogtreecommitdiff
path: root/examples/cxx/tree/messaging/dom-serialize.hxx
blob: f80e22b695705092de04d6bccf5c7bd24ce515a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// file      : examples/cxx/tree/messaging/dom-serialize.hxx
// copyright : not copyrighted - public domain

#ifndef DOM_SERIALIZE
#define DOM_SERIALIZE

#include <string>
#include <iosfwd>

#include <xercesc/dom/DOMDocument.hpp>

// Serialize a DOM document to XML which is written to the standard
// output stream.
//
void
serialize (std::ostream& os,
           const xercesc::DOMDocument& doc,
           const std::string& encoding = "UTF-8");

#endif // DOM_SERIALIZE