// file : examples/cxx/tree/messaging/dom-serialize.hxx // author : Boris Kolpackov // copyright : not copyrighted - public domain #ifndef DOM_SERIALIZE #define DOM_SERIALIZE #include #include #include // 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