| 425 | } |
| 426 | |
| 427 | bool ControllerAgent::handle_connect() |
| 428 | { |
| 429 | if (!control_unit_) { |
| 430 | LogError << "control_unit_ is nullptr"; |
| 431 | return false; |
| 432 | } |
| 433 | |
| 434 | bool ret = control_unit_->connect(); |
| 435 | |
| 436 | request_uuid(); |
| 437 | |
| 438 | return ret; |
| 439 | } |
| 440 | |
| 441 | bool ControllerAgent::handle_click(const ClickParam& param) |
| 442 | { |
nothing calls this directly
no test coverage detected