diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2014-12-22 18:12:39 +0100 |
---|---|---|
committer | Andreas Stöckel <andreas@somweyr.de> | 2014-12-22 18:12:39 +0100 |
commit | 9c8d6b461246bbee6e3d8ac411c7f10da481acf2 (patch) | |
tree | a872597e79b588e8607d638aabb9415898c883a6 /src/core/Node.hpp | |
parent | 10a46acdb1fb3b363edd5b9bb507fff63da9c24b (diff) |
moved all Node and Typesystem RTTI information to own namespace, added Constant class and documentation for Typesystem and ArrayType class and unit test for ArrayType
Diffstat (limited to 'src/core/Node.hpp')
-rw-r--r-- | src/core/Node.hpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/Node.hpp b/src/core/Node.hpp index 516da03..1bc4008 100644 --- a/src/core/Node.hpp +++ b/src/core/Node.hpp @@ -25,6 +25,7 @@ #include <vector> #include <unordered_set> +#include <core/common/Rtti.hpp> #include <core/managed/Managed.hpp> #include <core/managed/ManagedContainer.hpp> @@ -541,6 +542,12 @@ public: using Base::ManagedGenericMap; }; +namespace RttiTypes { + /** + * Typeinformation for the base "Node" class. + */ + extern const Rtti<Node> Node; +} } |