#ifndef THREADDATA_H #define THREADDATA_H #include #include "utils.h" #include #include class ThreadData { public: std::thread thread; int threadnr = 0; int epollfd = 0; int event_fd = 0; ThreadData(int threadnr); void giveFdToEpoll(int fd); }; #endif // THREADDATA_H