diff options
| author | Benjamin Paassen <bpaassen@techfak.uni-bielefeld.de> | 2015-03-01 20:47:25 +0100 | 
|---|---|---|
| committer | Benjamin Paassen <bpaassen@techfak.uni-bielefeld.de> | 2015-03-01 20:47:25 +0100 | 
| commit | a7019614896fdd3e29b9a28f6a8cfd2c1b365983 (patch) | |
| tree | 8a9f102649e88ebf24de0a07cf5f348804a6212d /src/cli | |
| parent | 0d4ce5c555a1ba3a87cb9a1e350854eda7a243e1 (diff) | |
Renamed domain to ontology.
Diffstat (limited to 'src/cli')
| -rw-r--r-- | src/cli/Main.cpp | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/src/cli/Main.cpp b/src/cli/Main.cpp index d03735d..2fe0585 100644 --- a/src/cli/Main.cpp +++ b/src/cli/Main.cpp @@ -41,7 +41,7 @@  #include <core/frontend/TerminalLogger.hpp>  #include <core/managed/Manager.hpp>  #include <core/model/Document.hpp> -#include <core/model/Domain.hpp> +#include <core/model/Ontology.hpp>  #include <core/model/Project.hpp>  #include <core/model/Typesystem.hpp>  #include <core/parser/ParserContext.hpp> @@ -120,7 +120,7 @@ int main(int argc, char **argv)  	    "The input document file name")(  	    "include,I", po::value<std::vector<std::string>>(),  	    "Include paths, where resources like the input document " -	    "or additional domains, typesystems, etc. might be " +	    "or additional ontologies, typesystems, etc. might be "  	    "found.")(  	    "output,o", po::value<std::string>(&outputPath),  	    "The output file name. Per default the input file name will be used.")( @@ -234,11 +234,11 @@ int main(int argc, char **argv)  	OsxmlParser osxmlParser;  	registry.registerParser(  	    {"text/vnd.ousia.osml"}, -	    {&RttiTypes::Document, &RttiTypes::Domain, &RttiTypes::Typesystem}, +	    {&RttiTypes::Document, &RttiTypes::Ontology, &RttiTypes::Typesystem},  	    &osmlParser);  	registry.registerParser(  	    {"text/vnd.ousia.osml+xml"}, -	    {&RttiTypes::Document, &RttiTypes::Domain, &RttiTypes::Typesystem}, +	    {&RttiTypes::Document, &RttiTypes::Ontology, &RttiTypes::Typesystem},  	    &osxmlParser);  	registry.registerResourceLocator(&fileLocator); | 
