code_app/sdk/webservice/SockIoServer.h

22 lines
407 B
C
Raw Normal View History

#pragma once
#include "WebServer.h"
#include "Msg.h"
namespace ver_1
{
class SockIoServer : public WebServer
{
public:
SockIoServer(HGMsgPump msgPump, ManagerV1* manager);
virtual ~SockIoServer();
ManagerV1* GetManger();
void Connect(const ConnectParam* param);
void Command(const SockIoCmdParam* param);
void Event(const SockIoEvtParam* param);
private:
ManagerV1* m_manager;
};
}