| 89 | } |
| 90 | |
| 91 | openhd::Setting openhd::create_read_only_int(const std::string& id, int value) { |
| 92 | auto cb = [](const std::string&, int) { return false; }; |
| 93 | return Setting{id, openhd::IntSetting{value, cb}}; |
| 94 | } |
| 95 | |
| 96 | void openhd::validate_provided_ids(const std::vector<Setting>& settings) { |
| 97 | std::map<std::string, void*> test; |
nothing calls this directly
no outgoing calls
no test coverage detected