Files
Np_Term/include/transport/transport.h
2025-05-31 03:19:58 +09:00

19 lines
226 B
C++

#pragma once
#include "utils/thread_pool.h"
namespace Network {
class Transport {
public:
Transport(utils::ThreadPool* tp);
void Send();
void Recv();
private:
utils::ThreadPool* tp_;
};
} // namespace Network