Files
mir_server/Gateway/gateway/event/select_event.h

12 lines
229 B
C
Raw Permalink Normal View History

2025-01-09 17:45:40 +08:00
#pragma once
#include "base_event.h"
#include <map>
class SelectEvent : public BaseEvent {
public:
typedef std::map<SOCKET, void*> FdPtrMap;
SelectEvent(GameClientMgr* cli_mgr);
~SelectEvent();
virtual void RunOne(void);
};