| 85 | } |
| 86 | |
| 87 | mitk::BaseProperty *mitk::Annotation::GetProperty(const std::string &propertyKey) const |
| 88 | { |
| 89 | mitk::BaseProperty::Pointer property = m_PropertyList->GetProperty(propertyKey); |
| 90 | if (property.IsNotNull()) |
| 91 | return property; |
| 92 | |
| 93 | // only to satisfy compiler! |
| 94 | return nullptr; |
| 95 | } |
| 96 | |
| 97 | bool mitk::Annotation::GetBoolProperty(const std::string &propertyKey, bool &boolValue) const |
| 98 | { |
no test coverage detected