| 58 | |
| 59 | virtual ~LoopThread() = default; |
| 60 | LoopThread(const LoopThread&) = delete; |
| 61 | private: |
| 62 | LoopThread(std::unique_ptr<Loop>&& loop) : _loop(std::move(loop)), _stopLoop(nullptr) {} |
| 63 | static void* runLoop(void* arg); |
nothing calls this directly
no outgoing calls
no test coverage detected