From 66382c62af1be515deff66d51dba7f27e5fe4937 Mon Sep 17 00:00:00 2001 From: Andreas Stöckel Date: Sun, 18 Jan 2015 18:41:30 +0100 Subject: Renamed RttiType to Rtti --- src/core/parser/Scope.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/core/parser/Scope.hpp') diff --git a/src/core/parser/Scope.hpp b/src/core/parser/Scope.hpp index 20a189a..1ceac2e 100644 --- a/src/core/parser/Scope.hpp +++ b/src/core/parser/Scope.hpp @@ -142,7 +142,7 @@ public: * found. */ Rooted resolve(const std::vector &path, - const RttiType &type, Logger &logger); + const Rtti &type, Logger &logger); }; /** @@ -173,7 +173,7 @@ public: /** * Reference at the type of the object that should be resolved. */ - const RttiType &type; + const Rtti &type; /** * Position at which the resolution was triggered. @@ -188,14 +188,14 @@ public: * Scope class. * @param path is the path that was queried when the resolution failed the * first time. - * @param type is the RttiType of the element that should be queried. + * @param type is the Rtti of the element that should be queried. * @param resultCallback is the callback function that should be called if * the desired element has indeed been found. * @param location is the location at which the resolution was triggered. */ DeferredResolution(const NodeVector &nodes, const std::vector &path, - const RttiType &type, + const Rtti &type, ResolutionResultCallback resultCallback, const SourceLocation &location = SourceLocation{}); @@ -294,7 +294,7 @@ public: * mean, that the resolved object does not exist, as it may be resolved * later. */ - bool resolve(const std::vector &path, const RttiType &type, + bool resolve(const std::vector &path, const Rtti &type, Logger &logger, ResolutionImposterCallback imposterCallback, ResolutionResultCallback resultCallback, const SourceLocation &location = SourceLocation{}); @@ -318,7 +318,7 @@ public: * mean, that the resolved object does not exist, as it may be resolved * later. */ - bool resolve(const std::vector &path, const RttiType &type, + bool resolve(const std::vector &path, const Rtti &type, Logger &logger, ResolutionResultCallback resultCallback, const SourceLocation &location = SourceLocation{}); -- cgit v1.2.3