| 50 | } |
| 51 | |
| 52 | bool Preferences::optInt64(const std::string& key, int64_t& out) const { |
| 53 | std::string bundle_key = get_bundle_key(namespace_, key); |
| 54 | return preferences.optInt64(bundle_key, out); |
| 55 | } |
| 56 | |
| 57 | bool Preferences::optString(const std::string& key, std::string& out) const { |
| 58 | std::string bundle_key = get_bundle_key(namespace_, key); |
nothing calls this directly
no test coverage detected