| 115 | } |
| 116 | |
| 117 | void mitk::Preferences::PutFloat(const std::string& key, float value) |
| 118 | { |
| 119 | this->SetProperty<float>(m_Properties, key, value, [](const auto& value) { return std::to_string(value); }); |
| 120 | } |
| 121 | |
| 122 | double mitk::Preferences::GetDouble(const std::string& key, double def) const |
| 123 | { |