From 98fc0ed106efe44be6d8483af3d8d66321fa4190 Mon Sep 17 00:00:00 2001 From: Benjamin Paassen Date: Fri, 9 Jan 2015 15:41:26 +0100 Subject: changed XML prolog handling. --- src/core/XML.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/core/XML.hpp') diff --git a/src/core/XML.hpp b/src/core/XML.hpp index 25c8dae..e55ecba 100644 --- a/src/core/XML.hpp +++ b/src/core/XML.hpp @@ -68,17 +68,17 @@ public: : Managed(mgr), parent(acquire(parent)){}; /** - * This method writes an XML prolog and the XML representing the current + * This method writes an XML doctype and the XML representing the current * node, including all children, to the given output stream. * @param out is the output stream the serialized data shall be * written to. - * @param doctype enables you to add a prefix after the XML prolog - * specifying the doctype. + * @param doctype enables you to add a prefix specifying the doctype. */ - void serialize(std::ostream &out, const std::string &doctype = ""); + void serialize(std::ostream &out, + const std::string &doctype = ""); /** * This method just writes the XML representation of this node to the - * output stream, without the XML prolog. + * output stream. * * @param out the output stream the serialized data shall be written * to. -- cgit v1.2.3