knowL: Knowledge Libraries
Loading...
Searching...
No Matches
IoEvent.h
1namespace knowCore
2{
3
4 class IoEvent {
5 public:
6 IoEvent();
7 ~IoEvent();
8
12 void set();
13
17 void reset();
18
19 int fd() const;
20 private:
21 struct Private;
22 Private* const d;
23 };
24}
Definition IoEvent.h:4
void reset()
Definition IoEvent.cpp:57
void set()
Definition IoEvent.cpp:49
Definition IoEvent.cpp:14