net.hpp 219 B

123456789101112131415
  1. #ifndef __NET_HPP__
  2. #define __NET_HPP__
  3. #include <boost/asio.hpp>
  4. #include "config.hpp"
  5. class NetIO {
  6. const Config &conf;
  7. public:
  8. NetIO(boost::asio::io_context &io_context, const Config &config);
  9. };
  10. #endif