| 14 | #endif |
| 15 | |
| 16 | ProcessRunner::ProcessRunner(ProcessRunnerConfig cfg, const std::atomic<bool> &stop) |
| 17 | : config(std::move(cfg)), stopFlag(stop) {} |
| 18 | |
| 19 | auto ProcessRunner::create(ProcessRunnerConfig config, |
| 20 | const std::atomic<bool> &stopFlag) -> std::unique_ptr<ProcessRunner> { |
nothing calls this directly
no outgoing calls
no test coverage detected