subprocess::string_arg::string_arg

Constructors

Synopses

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...

Parameters

NameDescription
argArgument value to store.