| 58 | } |
| 59 | |
| 60 | bool mitk::PropertyExtensions::HasExtension(const std::string &propertyName, const std::string &className) |
| 61 | { |
| 62 | const ExtensionMap &extensions = m_Extensions[className]; |
| 63 | |
| 64 | return !propertyName.empty() ? extensions.find(propertyName) != extensions.end() : false; |
| 65 | } |
| 66 | |
| 67 | void mitk::PropertyExtensions::RemoveAllExtensions(const std::string &className) |
| 68 | { |
no test coverage detected