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