diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-18 18:41:30 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-18 18:41:30 +0100 |
commit | 66382c62af1be515deff66d51dba7f27e5fe4937 (patch) | |
tree | cdd661a560ef1f766889d661d8c7561d18bfbabb /src/core/managed/Managed.hpp | |
parent | 7d788f2dce18c3ba6f11f7f032d35fef2e5fa9d4 (diff) |
Renamed RttiType to Rtti
Diffstat (limited to 'src/core/managed/Managed.hpp')
-rw-r--r-- | src/core/managed/Managed.hpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/core/managed/Managed.hpp b/src/core/managed/Managed.hpp index e98e95e..08158b2 100644 --- a/src/core/managed/Managed.hpp +++ b/src/core/managed/Managed.hpp @@ -41,7 +41,7 @@ class Rooted; template <class T> class Owned; -class RttiType; +class Rtti; // TODO: Implement clone, getReferenced and getReferencing @@ -207,32 +207,32 @@ public: /* RTTI methods */ /** - * Returns the RttiType instance registered for instances of the type of + * Returns the Rtti instance registered for instances of the type of * this Managed instance. * - * @return a reference to the registered RttiType for this particular + * @return a reference to the registered Rtti for this particular * Managed class. */ - const RttiType &type() const; + const Rtti &type() const; /** * Returns true if this Managed instance is of the type described by the - * given RttiType instance. + * given Rtti instance. * - * @param true if the RttiType registered for this particular Managed + * @param true if the Rtti 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 RttiType &t) const; + bool isa(const Rtti &t) const; /** * Returns true if this Managed instance may contain instances of the type - * described by the given RttiType instance. + * described by the given Rtti instance. * - * @param true if the RttiType registered for this particular Managed class + * @param true if the Rtti registered for this particular Managed class * may contain instance of the given type. */ - bool composedOf(const RttiType &t) const; + bool composedOf(const Rtti &t) const; }; /** |