summaryrefslogtreecommitdiff
path: root/lib/xml_base.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/xml_base.h')
-rw-r--r--lib/xml_base.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/xml_base.h b/lib/xml_base.h
index ceaf609b..85d4dfa1 100644
--- a/lib/xml_base.h
+++ b/lib/xml_base.h
@@ -11,7 +11,7 @@
#include <zen/zstring.h>
#include <zen/file_error.h>
-//bind zenxml and zen file handling together
+//bind zen::Xml and zen file handling together
namespace xmlAccess
{
@@ -34,7 +34,7 @@ private:
};
void saveXmlDocument(const zen::XmlDoc& doc, const Zstring& filename); //throw FfsXmlError
-void loadXmlDocument(const Zstring& filename, zen::XmlDoc& doc); //throw FfsXmlError
+zen::XmlDoc loadXmlDocument(const Zstring& filename); //throw FfsXmlError
const std::wstring getErrorMessageFormatted(const std::vector<std::wstring>& failedElements);
}
bgstack15