| 55 | } |
| 56 | |
| 57 | bool Preferences::optString(const std::string& key, std::string& out) const { |
| 58 | std::string bundle_key = get_bundle_key(namespace_, key); |
| 59 | return preferences.optString(bundle_key, out); |
| 60 | } |
| 61 | |
| 62 | void Preferences::putBool(const std::string& key, bool value) { |
| 63 | std::string bundle_key = get_bundle_key(namespace_, key); |
nothing calls this directly
no test coverage detected