| 244 | } |
| 245 | |
| 246 | std::optional<maajs::ValueType> TaskerImpl::get_controller() |
| 247 | { |
| 248 | auto ctrl = MaaTaskerGetController(tasker); |
| 249 | if (!ctrl) { |
| 250 | return std::nullopt; |
| 251 | } |
| 252 | return ControllerImpl::locate_object(env, ctrl); |
| 253 | } |
| 254 | |
| 255 | void TaskerImpl::clear_cache() |
| 256 | { |
nothing calls this directly
no test coverage detected