emsApplication/applications/ems_datahubs/eventhandler.h

15 lines
187 B
C
Raw Normal View History

2024-09-05 16:36:20 +08:00
#pragma once
#include <hv/hloop.h>
class EventHandler
{
public:
EventHandler();
virtual ~EventHandler();
public:
static void onRecvHandler(hio_t* io, void* buf, int readbytes);
};