| 152 | } |
| 153 | |
| 154 | bool Toggle::is_checked() const { |
| 155 | return checked; |
| 156 | } |
| 157 | |
| 158 | void Toggle::add_checked_callback(std::function<void(bool)> callback) { |
| 159 | checked_callbacks.emplace_back(callback); |
nothing calls this directly
no outgoing calls
no test coverage detected