Rudiments
listener.h
1 // Copyright (c) 2002 David Muse
2 // See the COPYING file for more information.
3 
4  protected:
5 
6  // FIXME: it should be possible to copy a listener
7  listener(const listener &l);
8  listener &operator=(const listener &l);
9 
10  private:
11  void addFileDescriptor(filedescriptor *fd,
12  bool read, bool write);
13  bool rebuildMonitorList();
14  void cleanUp();
15 
16  listenerprivate *pvt;
Definition: listener.h:16
Definition: filedescriptor.h:14