mirror of
https://github.com/boostorg/process.git
synced 2026-01-19 16:32:15 +00:00
16 lines
249 B
Plaintext
16 lines
249 B
Plaintext
== `start_dir.hpp`
|
|
[#start_dir]
|
|
|
|
|
|
[source,cpp]
|
|
----
|
|
/// Initializer for the starting directory of a subprocess to be launched.
|
|
struct process_start_dir
|
|
{
|
|
filesystem::path start_dir;
|
|
|
|
process_start_dir(filesystem::path start_dir);
|
|
{
|
|
}
|
|
};
|
|
---- |