//// Created by xzl on 2018/5/24.//#ifndef IPTV_PROCESS_H#define IPTV_PROCESS_H#include <sys/wait.h>#include <sys/fcntl.h>#include <string>usingnamespacestd;classProcess{public:Process();~Process();voidrun(conststring&cmd,conststring&log_file);voidkill(intmax_delay);boolwait(boolblock=true);intexit_code();private:pid_t_pid=-1;int_exit_code=0;};#endif //IPTV_PROCESS_H