| 70 | } |
| 71 | |
| 72 | void mitk::Annotation::AddProperty(const std::string &propertyKey, |
| 73 | const BaseProperty::Pointer &propertyValue, |
| 74 | bool overwrite) |
| 75 | { |
| 76 | if ((overwrite) || (GetProperty(propertyKey) == nullptr)) |
| 77 | { |
| 78 | SetProperty(propertyKey, propertyValue); |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | void mitk::Annotation::ConcatenatePropertyList(PropertyList *pList, bool replace) |
| 83 | { |
no test coverage detected