2
0
mirror of https://github.com/boostorg/process.git synced 2026-01-19 16:32:15 +00:00
Files
process/doc/reference/start_dir.adoc
Klemens Morgenstern c33828a166 reference docs
2024-12-20 20:53:29 +08:00

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);
{
}
};
----