| 8 | static Q_LOGGING_CATEGORY(log, "Operate") |
| 9 | |
| 10 | CBackend::CBackend(COperate *pOperate, bool bStopSignal) |
| 11 | : QObject() // Because it's in a different thread with pOperate |
| 12 | , m_bStopSignal(bStopSignal) |
| 13 | { |
| 14 | qDebug(log) << Q_FUNC_INFO; |
| 15 | SetConnect(pOperate); |
| 16 | } |
| 17 | |
| 18 | CBackend::~CBackend() |
| 19 | { |
nothing calls this directly
no outgoing calls
no test coverage detected