23 #ifndef STORAGE_REMOTE_H 24 #define STORAGE_REMOTE_H 41 : stdout(stdout), stderr(), exit_code(0) {}
43 const std::vector<std::string>& stderr,
int exit_code)
44 : stdout(stdout), stderr(stderr), exit_code(exit_code) {}
46 std::vector<std::string> stdout;
47 std::vector<std::string> stderr;
55 RemoteFile(
const std::vector<std::string>& content) : content(content) {}
57 std::vector<std::string> content;
67 virtual RemoteCommand get_command(
const std::string& name)
const = 0;
68 virtual RemoteFile get_file(
const std::string& name)
const = 0;
The storage namespace.
Definition: Actiongraph.h:37