diff options
author | deva <deva> | 2006-01-10 11:18:50 +0000 |
---|---|---|
committer | deva <deva> | 2006-01-10 11:18:50 +0000 |
commit | cbe575f21ab008182b5771b691ec4c93c5b2b87a (patch) | |
tree | eda4f44e4a10d179c06bcf89be95052038c7503b /src/cprlisten.h | |
parent | 6568c8ec81fac9bee7ceceaee0de7455ac006160 (diff) |
*** empty log message ***
Diffstat (limited to 'src/cprlisten.h')
-rw-r--r-- | src/cprlisten.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cprlisten.h b/src/cprlisten.h index 5808aec..012fe4c 100644 --- a/src/cprlisten.h +++ b/src/cprlisten.h @@ -34,10 +34,11 @@ #include "mutex.h" #include "aa_socket.h" +#include "info.h" class CPRListen: public Thread { public: - CPRListen(unsigned short port); + CPRListen(Info *info, unsigned short port); ~CPRListen(); bool cprChanged(); @@ -47,6 +48,7 @@ public: void stop(); // Stops the call to listen private: + Info *info; volatile bool running; AASocket *socket; |