Sophie

Sophie

distrib > Fedora > 14 > i386 > media > os > by-pkgid > fc62b1a09d3a2a2032c7fe6d982e91e3 > files > 434

xsd-3.3.0-2.fc14.i686.rpm

// 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