| 2663 | QPilotMachine::~QPilotMachine(){} |
| 2664 | |
| 2665 | bool QPilotMachine::init(const std::string& pilot_url, |
| 2666 | bool log_cout /*= false*/) |
| 2667 | { |
| 2668 | m_pilot_url = pilot_url; |
| 2669 | m_log_cout = log_cout; |
| 2670 | _abort(); |
| 2671 | m_imp_obj = std::make_unique<QPilotMachineImp>(); |
| 2672 | return m_imp_obj->init(pilot_url, log_cout); |
| 2673 | } |
| 2674 | |
| 2675 | void QPilotMachine::_abort(void) |
| 2676 | { |
no outgoing calls
no test coverage detected