Rudiments
listener.h
1// Copyright (c) 1999-2018 David Muse
2// See the COPYING file for more information.
3
4 listener(listener &l) {};
5 listener &operator=(listener &l) { return *this; };
6
7 private:
8 void addFileDescriptor(filedescriptor *fd,
9 bool read, bool write);
10 bool rebuildMonitorList();
11 void cleanUp();
12
13 listenerprivate *pvt;
Definition filedescriptor.h:13
Definition listener.h:11