| 362 | }; |
| 363 | |
| 364 | process::process(const std::string& cmd, const std::vector<std::string>& args) |
| 365 | : impl(std::make_unique<process_impl>()) |
| 366 | { |
| 367 | impl->command = cmd; |
| 368 | if(not args.empty()) |
| 369 | impl->args = join_strings(args, " "); |
| 370 | } |
| 371 | |
| 372 | process::process(process&&) noexcept = default; |
| 373 |
nothing calls this directly
no test coverage detected