diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-25 18:57:19 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-25 18:57:19 +0100 |
commit | 67c3618e593f88eb8177404475586735902d693f (patch) | |
tree | 274bbc603aa2ec3bdb5b23294b090bf6d137f560 /src/core/parser/ParserStack.cpp | |
parent | 1a6236c184d7ffe3551d417b656aee31b15d1948 (diff) |
Restructures parser classes a little, removed Registry from ParserContext, gave a ResourceManager instance to the Project, using ResourceRequest when including or linking files, thought through how "including" and "linking" are handled
Diffstat (limited to 'src/core/parser/ParserStack.cpp')
-rw-r--r-- | src/core/parser/ParserStack.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/parser/ParserStack.cpp b/src/core/parser/ParserStack.cpp index 3792ee8..02b142a 100644 --- a/src/core/parser/ParserStack.cpp +++ b/src/core/parser/ParserStack.cpp @@ -22,6 +22,7 @@ #include <core/common/Utils.hpp> #include <core/common/Exceptions.hpp> +#include <core/model/Project.hpp> namespace ousia { @@ -74,7 +75,7 @@ HandlerInstance HandlerDescriptor::create(const ParserContext &ctx, } // Canonicalize the arguments - arguments.validateMap(args, ctx.logger, true); + arguments.validateMap(args, ctx.getLogger(), true); h->start(args); return HandlerInstance(h, this); |