| 160 | } |
| 161 | |
| 162 | std::unique_ptr<Process> Process::createWithPipe( const std::string& /*program*/, |
| 163 | const std::vector<std::string>& /*args*/, |
| 164 | const std::string& /*workingDirectory*/, |
| 165 | std::unique_ptr<IPipe>& outPipe, |
| 166 | bool /*withStderr*/ ) { |
| 167 | outPipe = nullptr; |
| 168 | return nullptr; |
| 169 | } |
| 170 | |
| 171 | std::unique_ptr<Process> |
| 172 | Process::createWithPseudoTerminal( const std::string& program, const std::vector<std::string>& args, |
nothing calls this directly
no test coverage detected