diff options
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; +}  }  | 
