| 179 | } |
| 180 | |
| 181 | bool MacOSControlUnitMgr::input_text(const std::string& text) |
| 182 | { |
| 183 | if (!input_) { |
| 184 | LogError << "input_ is nullptr"; |
| 185 | return false; |
| 186 | } |
| 187 | |
| 188 | return input_->input_text(text); |
| 189 | } |
| 190 | |
| 191 | bool MacOSControlUnitMgr::key_down(int key) |
| 192 | { |
nothing calls this directly
no test coverage detected