#pragma once #include "Socket/TCPSocket.hpp" #include namespace Chattr { class Session { public: Session(); ~Session(); bool init(); void destruct(); int send(); int recv(); private: struct std::vector tcpSock_; struct std::vector udpSock_; }; }