This repository has been archived on 2025-06-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
compLIB/server_v2/include/IPWritingService.hpp
2022-10-07 01:22:27 +02:00

16 lines
289 B
C++

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