| 51 | } |
| 52 | |
| 53 | std::string mitk::Preferences::Get(const std::string& key, const std::string& def) const |
| 54 | { |
| 55 | auto value = this->FindValue(key); |
| 56 | return value.has_value() ? value.value() : def; |
| 57 | } |
| 58 | |
| 59 | void mitk::Preferences::Put(const std::string& key, const std::string& value) |
| 60 | { |