From 1131b68bdf2949f56422a2c53617a5f7d2d9be47 Mon Sep 17 00:00:00 2001 From: Andreas Stöckel Date: Fri, 23 Jan 2015 15:28:22 +0100 Subject: Fixed typos, autoformat and setIsOneOf method --- src/core/common/Rtti.hpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/core/common/Rtti.hpp') diff --git a/src/core/common/Rtti.hpp b/src/core/common/Rtti.hpp index 53043e2..e2f1fa2 100644 --- a/src/core/common/Rtti.hpp +++ b/src/core/common/Rtti.hpp @@ -392,6 +392,16 @@ public: */ bool isOneOf(const RttiSet &others) const; + /** + * Checks whether any type in the first set is one type in the second set. + * + * @param s1 is the first set. For each type in this set we check whether + * it is one of the types in s2. + * @param s2 is the second set. + * @return true if the above condition is fulfilled, false otherwise. + */ + static bool setIsOneOf(const RttiSet &s1, const RttiSet &s2); + /** * Returns true if an instance of this type may have references to the other * given type. This mechanism is used to prune impossible paths when -- cgit v1.2.3