| 346 | void Process::SetArgs(const std::vector<std::string>& args) { impl_->SetArgs(args); } |
| 347 | |
| 348 | void Process::SetEnv(const std::string& key, const std::string& value) { |
| 349 | impl_->SetEnv(key, value); |
| 350 | } |
| 351 | |
| 352 | void Process::IgnoreStderr() { impl_->IgnoreStderr(); } |
| 353 |