emsApplication/applications/ems_datahubs/eventhandler.h

15 lines
187 B
C++

#pragma once
#include <hv/hloop.h>
class EventHandler
{
public:
EventHandler();
virtual ~EventHandler();
public:
static void onRecvHandler(hio_t* io, void* buf, int readbytes);
};