diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-03 16:44:15 +0100 |
---|---|---|
committer | Andreas Stöckel <andreas@somweyr.de> | 2015-01-03 16:44:15 +0100 |
commit | 5c8c0cc70b49c5fb2d85778c31c3d3f9a670d315 (patch) | |
tree | c659c883819b556910eabcbf10faf89fc769bc89 /src/core/common/Rtti.hpp | |
parent | 603dedfa2b3704730fa4db8e7f84702b26da9ae6 (diff) |
Renamed "contains" to aggregatedOf, added corresponding convenience function to Rtti class
Diffstat (limited to 'src/core/common/Rtti.hpp')
-rw-r--r-- | src/core/common/Rtti.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/common/Rtti.hpp b/src/core/common/Rtti.hpp index 090b65b..deaf128 100644 --- a/src/core/common/Rtti.hpp +++ b/src/core/common/Rtti.hpp @@ -189,7 +189,7 @@ public: * @param other is the other type for which should be checked whether this * type is directly or indirectly aggregated of it. */ - bool contains(const RttiBase &other) const; + bool aggregatedOf(const RttiBase &other) const; }; /** |