From 7df5f30494b7da283164717dea9098c8d9dca77a Mon Sep 17 00:00:00 2001 From: Andreas Stöckel Date: Sun, 11 Jan 2015 13:23:26 +0100 Subject: Renamed RttiBase to RttiType --- src/core/managed/Managed.hpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src/core/managed/Managed.hpp') diff --git a/src/core/managed/Managed.hpp b/src/core/managed/Managed.hpp index f7eaa48..8ad609f 100644 --- a/src/core/managed/Managed.hpp +++ b/src/core/managed/Managed.hpp @@ -41,7 +41,7 @@ class Rooted; template class Owned; -class RttiBase; +class RttiType; // TODO: Implement clone, getReferenced and getReferencing @@ -190,32 +190,32 @@ public: /* RTTI methods */ /** - * Returns the RttiBase instance registered for instances of the type of + * Returns the RttiType instance registered for instances of the type of * this Managed instance. * - * @return a reference to the registered RttiBase for this particular + * @return a reference to the registered RttiType for this particular * Managed class. */ - const RttiBase &type() const; + const RttiType &type() const; /** * Returns true if this Managed instance is of the type described by the - * given RttiBase instance. + * given RttiType instance. * - * @param true if the RttiBase registered for this particular Managed + * @param true if the RttiType registered for this particular Managed * class is of the given type or one of the registered parent types is of * the given type. */ - bool isa(const RttiBase &t) const; + bool isa(const RttiType &t) const; /** * Returns true if this Managed instance may contain instances of the type - * described by the given RttiBase instance. + * described by the given RttiType instance. * - * @param true if the RttiBase registered for this particular Managed class + * @param true if the RttiType registered for this particular Managed class * may contain instance of the given type. */ - bool composedOf(const RttiBase &t) const; + bool composedOf(const RttiType &t) const; }; /** -- cgit v1.2.3