00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef _LISTENING_SOCKET_H
00011 #define _LISTENING_SOCKET_H
00012
00013 #include "QCuore.hh"
00014 #include "QFileDescriptor.hh"
00015
00016 class QListeningSocket : public QFileDescriptor
00017 {
00018
00019 public:
00020
00021
00022 QListeningSocket( int );
00023
00024
00025 virtual ~QListeningSocket() {}
00026
00027
00028 virtual void HandleCommand( QDescriptorList& List);
00029
00030
00031 virtual const int WaitConnection() const;
00032 };
00033
00034 #endif // _LISTENING_SOCKET_H
00035
00036