43 RemoteCommand() =
default;
44 RemoteCommand(
const std::vector<std::string>& stdout)
46 RemoteCommand(
const std::vector<std::string>& stdout,
47 const std::vector<std::string>& stderr,
int exit_code)
48 : stdout(stdout), stderr(stderr), exit_code(exit_code) {}
50 std::vector<std::string> stdout;
51 std::vector<std::string> stderr;