Add missing files ...

This commit is contained in:
Benjamin Sergeant
2018-11-07 12:24:08 -08:00
parent 10dd13deb3
commit ffd4f1d322
2 changed files with 105 additions and 0 deletions

23
ixwebsocket/IXEventFd.h Normal file
View File

@ -0,0 +1,23 @@
/*
* IXEventFd.h
* Author: Benjamin Sergeant
* Copyright (c) 2018 Machine Zone, Inc. All rights reserved.
*/
#pragma once
namespace ix
{
class EventFd {
public:
EventFd();
virtual ~EventFd();
bool notify();
bool clear();
int getFd();
private:
int _eventfd;
};
}