// // Created by Seshan Ravikumar on 2020-11-23. // #include #ifndef SINEWARE_INIT_RUNNING_PROCESS_H #define SINEWARE_INIT_RUNNING_PROCESS_H class running_process { public: std::string name; std::string exec; std::vector argv; std::string type; int level; int pid; }; #endif //SINEWARE_INIT_RUNNING_PROCESS_H