DockerClientpp
A simple Docker SDK for C++
ExecRet.hpp
1 #ifndef DOCKER_CLIENT_PP_EXECRET_H
2 #define DOCKER_CLIENT_PP_EXECRET_H
3 
4 #include "defines.hpp"
5 
6 namespace DockerClientpp {
7 
8 struct ExecRet {
9  int ret_code;
10  string output;
11 };
12 
13 } // namespace DockerClientpp
14 
15 #endif /* DOCKER_CLIENT_PP_EXECRET_H */
Definition: ExecRet.hpp:8