diff options
Diffstat (limited to 'src/core/model/Node.hpp')
-rw-r--r-- | src/core/model/Node.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/model/Node.hpp b/src/core/model/Node.hpp index 4db0cf7..190e8de 100644 --- a/src/core/model/Node.hpp +++ b/src/core/model/Node.hpp @@ -44,7 +44,7 @@ namespace ousia { // Forward declarations class Logger; -class RttiType; +class Rtti; /** * Describes the validity of a node structure. @@ -481,7 +481,7 @@ public: * the resolved elements. */ std::vector<ResolutionResult> resolve(const std::vector<std::string> &path, - const RttiType &type); + const Rtti &type); /** * Function which resolves a single name to a list of possible nodes @@ -493,7 +493,7 @@ public: * the resolved elements. */ std::vector<ResolutionResult> resolve(const std::string &name, - const RttiType &type); + const Rtti &type); /** * Checks whether this node is valid and returns true if it is and false @@ -573,7 +573,7 @@ namespace RttiTypes { /** * Typeinformation for the base "Node" class. */ -extern const RttiType Node; +extern const Rtti Node; } } |