summaryrefslogtreecommitdiff
path: root/src/core/common/Rtti.hpp
diff options
context:
space:
mode:
authorAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-01-14 22:04:55 +0100
committerAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-01-14 22:04:55 +0100
commit2ed3e09b30357cbab2137056d51caf6bac3f48c6 (patch)
tree88cc939075dc62d2daca14ffb2d307b88fb19d53 /src/core/common/Rtti.hpp
parent682250084fdd162b86427e0c29af24696ad10eb1 (diff)
Added RttiType::hasProperty and RttiType::hasMethod function
Diffstat (limited to 'src/core/common/Rtti.hpp')
-rw-r--r--src/core/common/Rtti.hpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/core/common/Rtti.hpp b/src/core/common/Rtti.hpp
index 6449c75..3549474 100644
--- a/src/core/common/Rtti.hpp
+++ b/src/core/common/Rtti.hpp
@@ -435,6 +435,23 @@ public:
*/
std::shared_ptr<PropertyDescriptor> getProperty(const std::string &name) const;
+ /**
+ * Returns true if a method with the given name is registered for this type.
+ *
+ * @param name is the name of the method that should be looked up.
+ * @return true if a method with this name exists, false otherwise.
+ */
+ bool hasMethod(const std::string &name) const;
+
+ /**
+ * Returns true if a property with the given name is registered for this
+ * type.
+ *
+ * @param name is the name of the property that should be looked up.
+ * @return true if a property with this name exists, false otherwise.
+ */
+ bool hasProperty(const std::string &name) const;
+
};
/**