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