Revision: | 104 |
Committed: | 2003-03-31T20:18:26-08:00 (22 years, 2 months ago) by douglas |
Content type: | text/x-c |
File size: | 251 byte(s) |
Log Message: | Initial revision |
# | Content |
---|---|
1 | // Windows XP FAQ Poll |
2 | // |
3 | // Douglas Thrift |
4 | // |
5 | // Poller.h |
6 | |
7 | #ifndef _Poller_h_ |
8 | #define _Poller_h_ |
9 | |
10 | #include "Contactor.h" |
11 | |
12 | class Poller : public Contactor |
13 | { |
14 | private: |
15 | public: |
16 | Poller(); |
17 | ~Poller() {} |
18 | void poll(bool nodelete); |
19 | }; |
20 | |
21 | #endif // _Poller_h_ |