summaryrefslogtreecommitdiff
path: root/xsd-examples/cxx/tree/messaging/dom-serialize.hxx
blob: bf1e290764e40309949ce4ff2be134934e70e758 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// file      : 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