| 279 | |
| 280 | |
| 281 | bool Settings::Set(const string& key, bool value, Ref<BinaryView> view, BNSettingsScope scope) |
| 282 | { |
| 283 | return BNSettingsSetBool(m_object, view ? view->GetObject() : nullptr, nullptr, scope, key.c_str(), value); |
| 284 | } |
| 285 | |
| 286 | |
| 287 | bool Settings::Set(const string& key, double value, Ref<BinaryView> view, BNSettingsScope scope) |
no test coverage detected