#ifndef COMPLIB_SERVER_IPWRITINGSERVICE_HPP #define COMPLIB_SERVER_IPWRITINGSERVICE_HPP #include class IPWritingService { public: IPWritingService(); private: [[noreturn]] void writing_loop(); std::thread writing_thread; }; #endif //COMPLIB_SERVER_IPWRITINGSERVICE_HPP