summaryrefslogtreecommitdiff
path: root/src/cli
diff options
context:
space:
mode:
authorAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-02-15 22:21:50 +0100
committerAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-02-15 22:21:50 +0100
commit51922e07def0ffbfc9ef411ccdcf373f61bc51b3 (patch)
treed4bc644d960bca5ee37feedb0677601793eb15ef /src/cli
parentd2f99e4b43ed93ef0fa8e138e0c3afc79775b77c (diff)
Fixed compilation of main application
Diffstat (limited to 'src/cli')
-rw-r--r--src/cli/Main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cli/Main.cpp b/src/cli/Main.cpp
index 2786025..8d7893a 100644
--- a/src/cli/Main.cpp
+++ b/src/cli/Main.cpp
@@ -49,7 +49,7 @@
#include <core/resource/ResourceManager.hpp>
#include <plugins/filesystem/FileLocator.hpp>
#include <plugins/html/DemoOutput.hpp>
-#include <plugins/xml/XmlParser.hpp>
+#include <formats/osxml/OsxmlParser.hpp>
#include <plugins/xml/XmlOutput.hpp>
const size_t ERROR_IN_COMMAND_LINE = 1;
@@ -209,7 +209,7 @@ int main(int argc, char **argv)
// fill registry
registry.registerDefaultExtensions();
- XmlParser xmlParser;
+ OsxmlParser xmlParser;
registry.registerParser(
{"text/vnd.ousia.oxm", "text/vnd.ousia.oxd"},
{&RttiTypes::Document, &RttiTypes::Domain, &RttiTypes::Typesystem},
@@ -246,4 +246,4 @@ int main(int argc, char **argv)
}
return SUCCESS;
-} \ No newline at end of file
+}