![]() |
Home | Libraries | People | FAQ | More |
boost::process::args
// In header: <boost/process/args.hpp> args;
The args property allows to explicitly set arguments for the execution. The name of the executable will always be the first element in the arg-vector.
To set a the argument vector the following syntax can be used.
std::initializer_list is among the allowed types, so the following syntax is also possible.
Below the possible types for value are listed, with char_type being either char or wchar_t.
To append a the argument vector the following syntax can be used.
std::initializer_list is among the allowed types, so the following syntax is also possible.
Below the possible types for value are listed, with char_type being either char or wchar_t.