| 79 | } |
| 80 | |
| 81 | void mitk::Preferences::PutInt(const std::string& key, int value) |
| 82 | { |
| 83 | this->SetProperty<int>(m_Properties, key, value, [](const auto& value) { return std::to_string(value); }); |
| 84 | } |
| 85 | |
| 86 | bool mitk::Preferences::GetBool(const std::string& key, bool def) const |
| 87 | { |
no outgoing calls