#pragma once #include #include "KOSocketMgr.h" typedef std::map SessionMap; template class ClientSocketMgr : public KOSocketMgr { public: ClientSocketMgr() {} virtual Socket *AssignSocket(SOCKET socket) { return nullptr; } virtual ~ClientSocketMgr() {} };