| 35 | } |
| 36 | |
| 37 | bool Preferences::hasString(const std::string& key) const { |
| 38 | std::string bundle_key = get_bundle_key(namespace_, key); |
| 39 | return preferences.hasString(bundle_key); |
| 40 | } |
| 41 | |
| 42 | bool Preferences::optBool(const std::string& key, bool& out) const { |
| 43 | std::string bundle_key = get_bundle_key(namespace_, key); |
nothing calls this directly
no test coverage detected