summaryrefslogtreecommitdiff
path: root/src/plugins/xml/XmlOutput.hpp
diff options
context:
space:
mode:
authorAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-02-17 17:15:10 +0100
committerAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-02-17 17:15:10 +0100
commitfcc6a49d8124a0fe1130e242191cc3dc3d701309 (patch)
treea07a96509ff9a415d0f9f1265c754a5af77ba20c /src/plugins/xml/XmlOutput.hpp
parente8df5877aa9bbeeb34ab0fe13f41d8096919c748 (diff)
parent1bfa8739ed66a25397286ea8be98c3eeb1c695af (diff)
Merge branch 'master' of somweyr.de:ousia
Diffstat (limited to 'src/plugins/xml/XmlOutput.hpp')
-rw-r--r--src/plugins/xml/XmlOutput.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/plugins/xml/XmlOutput.hpp b/src/plugins/xml/XmlOutput.hpp
index 51d03f9..2bb4190 100644
--- a/src/plugins/xml/XmlOutput.hpp
+++ b/src/plugins/xml/XmlOutput.hpp
@@ -28,6 +28,7 @@
#include <ostream>
+#include <core/resource/ResourceManager.hpp>
#include <core/model/Document.hpp>
#include <core/XML.hpp>
@@ -56,10 +57,12 @@ public:
* @param out is the output stream the XML serialization of the document
* shall be written to.
* @param logger is the logger errors shall be written to.
+ * @param resMgr is the ResourceManager to locate the domains and
+ * typesystems that were imported in this document.
* @param pretty is a flag that manipulates whether newlines and tabs are
* used.
*/
- void writeXml(Handle<Document> doc, std::ostream &out, Logger &logger,
+ void writeXml(Handle<Document> doc, std::ostream &out, Logger &logger,ResourceManager& resMgr,
bool pretty);
};
}