diff options
author | Benjamin Paassen <bpaassen@techfak.uni-bielefeld.de> | 2014-11-21 11:10:31 +0100 |
---|---|---|
committer | Benjamin Paassen <bpaassen@techfak.uni-bielefeld.de> | 2014-11-21 11:10:31 +0100 |
commit | 08e654dcda7fa6d764558ea184fe1a47bc4001c8 (patch) | |
tree | 0d97c16706ebb7832a7797146963f13bc33f24b1 /src/core/Node.hpp | |
parent | ca2040ba16459f5b3dfe8a86a14680eecea7ef7d (diff) |
Finished last commits moving action by also moving the tests and correcting all references and namespaces in the code.
Diffstat (limited to 'src/core/Node.hpp')
-rw-r--r-- | src/core/Node.hpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/core/Node.hpp b/src/core/Node.hpp index 249d1f2..262a611 100644 --- a/src/core/Node.hpp +++ b/src/core/Node.hpp @@ -16,8 +16,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef _OUSIA_DOM_NODE_HPP_ -#define _OUSIA_DOM_NODE_HPP_ +#ifndef _OUSIA_NODE_HPP_ +#define _OUSIA_NODE_HPP_ #include <functional> #include <map> @@ -28,7 +28,6 @@ #include <core/Managed.hpp> namespace ousia { -namespace dom { /* Forward declarations */ class Node; @@ -512,7 +511,6 @@ public: bool triggerEvent(Event &event, bool fromChild = false); }; } -} -#endif /* _OUSIA_DOM_NODE_HPP_ */ +#endif /* _OUSIA_NODE_HPP_ */ |