diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-14 22:04:55 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-14 22:04:55 +0100 |
commit | 2ed3e09b30357cbab2137056d51caf6bac3f48c6 (patch) | |
tree | 88cc939075dc62d2daca14ffb2d307b88fb19d53 /src/core/common/Rtti.cpp | |
parent | 682250084fdd162b86427e0c29af24696ad10eb1 (diff) |
Added RttiType::hasProperty and RttiType::hasMethod function
Diffstat (limited to 'src/core/common/Rtti.cpp')
-rw-r--r-- | src/core/common/Rtti.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/core/common/Rtti.cpp b/src/core/common/Rtti.cpp index 239f2b4..6809911 100644 --- a/src/core/common/Rtti.cpp +++ b/src/core/common/Rtti.cpp @@ -161,6 +161,16 @@ std::shared_ptr<PropertyDescriptor> RttiType::getProperty(const std::string &nam return it->second; } +bool RttiType::hasMethod(const std::string &name) const +{ + return methods.count(name) > 0; +} + +bool RttiType::hasProperty(const std::string &name) const +{ + return properties.count(name) > 0; +} + /* Constant initialization */ namespace RttiTypes { |