MCPcopy Create free account
hub / github.com/arun11299/cpp-subprocess / string_arg

Method string_arg

cpp-subprocess/subprocess.hpp:840–840  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

838struct string_arg
839{
840 string_arg(const char* arg): arg_value(arg) {}
841 string_arg(std::string&& arg): arg_value(std::move(arg)) {}
842 string_arg(const std::string& arg): arg_value(arg) {}
843 std::string arg_value;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected