| 22 | namespace deskflow::platform { |
| 23 | |
| 24 | MSWindowsProcess::MSWindowsProcess(const std::wstring &command, HANDLE stdOutput, HANDLE stdError) |
| 25 | : m_command(command), |
| 26 | m_stdOutput(stdOutput), |
| 27 | m_stdError(stdError) |
| 28 | { |
| 29 | } |
| 30 | |
| 31 | MSWindowsProcess::~MSWindowsProcess() |
| 32 | { |
nothing calls this directly
no outgoing calls
no test coverage detected