code_app/sdk/webservice/SockIoServer.h

20 lines
358 B
C
Raw Normal View History

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