! * Option to set the current working directory * of the spawned process. * * Eg: cwd{"/some/path/x"} */
| 864 | * Eg: cwd{"/some/path/x"} |
| 865 | */ |
| 866 | struct cwd |
| 867 | { |
| 868 | explicit cwd(const platform_str_t &cwd): cwd_(cwd) {} |
| 869 | explicit cwd(platform_str_t &&cwd): cwd_(std::move(cwd)) {} |
| 870 | platform_str_t cwd_; |
| 871 | }; |
| 872 | |
| 873 | /*! |
| 874 | * Option to specify environment variables required by |
nothing calls this directly
no outgoing calls
no test coverage detected