Constructors
Declared in <util/subprocess.h>
Stores a copy of a string argument.
string_arg(std::string const& arg);
» more...
Takes ownership of a string argument by moving it.
string_arg(std::string&& arg);
» more...
Stores a copy of a C string argument.
string_arg(char const* arg);
» more...
| Name | Description |
|---|---|
| arg | Argument value to store. |