15 lines
187 B
C
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);
|
||
|
};
|
||
|
|