| 236 | } |
| 237 | |
| 238 | std::string GenerateMetaDictKey(const mitk::PropertyKeyPath& propKey) |
| 239 | { |
| 240 | auto result = mitk::PropertyKeyPathToPropertyName(propKey); |
| 241 | std::replace(result.begin(), result.end(), '.', '_'); |
| 242 | return result; |
| 243 | } |
| 244 | |
| 245 | std::string GetValueFromMetaDict(const itk::MetaDataDictionary& dict, const mitk::PropertyKeyPath& propKey) |
| 246 | { |
nothing calls this directly
no test coverage detected