| 1 | #include "debugbackendworker.h" |
| 2 | |
| 3 | DebugBackendWorker::DebugBackendWorker(QObject *parent) : QObject(parent) |
| 4 | { |
| 5 | m_isBusy.store(0); |
| 6 | } |
| 7 | |
| 8 | bool DebugBackendWorker::isBusy(){ |
| 9 | if(m_isBusy.load() == 0){ |
nothing calls this directly
no outgoing calls
no test coverage detected