[ROSAUTOTEST] Use the new header with SPDX license identifier and remove dead source...
[reactos.git] / rostests / rosautotest / CPipedProcess.h
1 /*
2 * PROJECT: ReactOS Automatic Testing Utility
3 * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
4 * PURPOSE: Class that creates a process and redirects its output to a pipe
5 * COPYRIGHT: Copyright 2015 Thomas Faber (thomas.faber@reactos.org)
6 */
7
8 class CPipedProcess : public CProcess
9 {
10 private:
11 STARTUPINFOW m_StartupInfo;
12
13 LPSTARTUPINFOW InitStartupInfo(CPipe& Pipe);
14
15 public:
16 CPipedProcess(const wstring& CommandLine, CPipe& Pipe);
17 };