| 21 | } |
| 22 | |
| 23 | ProcessMonitor::ProcessMonitor() : |
| 24 | m_end(false), |
| 25 | m_event(Win32::CreateEvent(nullptr, false, false, nullptr)), |
| 26 | m_thread([this] { Run(); }) |
| 27 | { |
| 28 | } |
| 29 | |
| 30 | ProcessMonitor::~ProcessMonitor() |
| 31 | { |
nothing calls this directly
no test coverage detected