diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-02 16:20:29 +0100 |
---|---|---|
committer | Andreas Stöckel <andreas@somweyr.de> | 2015-01-02 16:20:29 +0100 |
commit | 5fa382a69c069be1b609e3c5c7b21ef747ceedd2 (patch) | |
tree | 57ff1447548afc33aedb77d2022e096d4a643283 /src/core/parser | |
parent | 128ac91adfdab4a21836c4f19d7024dba9790f9e (diff) |
Moved Node class to model folder
Diffstat (limited to 'src/core/parser')
-rw-r--r-- | src/core/parser/Parser.hpp | 2 | ||||
-rw-r--r-- | src/core/parser/Scope.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/parser/Parser.hpp b/src/core/parser/Parser.hpp index 867ea1d..63c57c3 100644 --- a/src/core/parser/Parser.hpp +++ b/src/core/parser/Parser.hpp @@ -32,11 +32,11 @@ #include <set> #include <string> -#include <core/Node.hpp> #include <core/Registry.hpp> #include <core/common/CharReader.hpp> #include <core/common/Exceptions.hpp> #include <core/common/Logger.hpp> +#include <core/model/Node.hpp> #include "Scope.hpp" diff --git a/src/core/parser/Scope.hpp b/src/core/parser/Scope.hpp index 5b19b3d..ac0f1fd 100644 --- a/src/core/parser/Scope.hpp +++ b/src/core/parser/Scope.hpp @@ -21,7 +21,7 @@ #include <deque> -#include <core/Node.hpp> +#include <core/model/Node.hpp> /** * @file Scope.hpp |