diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-02 12:11:48 +0100 |
---|---|---|
committer | Andreas Stöckel <andreas@somweyr.de> | 2015-01-02 12:11:48 +0100 |
commit | a68ee5ed18d9f6744ce99890b8e0249dff3bd070 (patch) | |
tree | 9a86334d6e26250f2c90fb82199c11717c7b034e /src/core/parser/Parser.hpp | |
parent | 8ff05a11e6fbab7ed5e029f06152b2860e6f229b (diff) |
Moved StandaloneParserContext to test folder
Diffstat (limited to 'src/core/parser/Parser.hpp')
-rw-r--r-- | src/core/parser/Parser.hpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/core/parser/Parser.hpp b/src/core/parser/Parser.hpp index 63303e2..867ea1d 100644 --- a/src/core/parser/Parser.hpp +++ b/src/core/parser/Parser.hpp @@ -87,25 +87,6 @@ struct ParserContext { : scope(scope), registry(registry), logger(logger), manager(manager){}; }; -struct StandaloneParserContext : public ParserContext { -private: - Logger logger; - Scope scope; - Registry registry; - Manager manager; - -public: - StandaloneParserContext() - : ParserContext(scope, registry, logger, manager), - scope(nullptr), - registry(logger){}; - - StandaloneParserContext(Logger &l) - : ParserContext(scope, registry, l, manager), - scope(nullptr), - registry(l){}; -}; - /** * Abstract parser class. This class builds the basic interface that should be * used by any parser which reads data from an input stream and transforms it |