ServerSocket.h

Go to the documentation of this file.
00001 // Definition of the ServerSocket class
00002 
00003 #ifndef ServerSocket_class
00004 #define ServerSocket_class
00005 
00006 #include "Socket.h"
00007 
00008 
00009 class ServerSocket : private Socket
00010 {
00011  public:
00012 
00013   ServerSocket ( int port );
00014   ServerSocket (){};
00015   virtual ~ServerSocket();
00016 
00017   const ServerSocket& operator << ( const std::string& ) const;
00018   const ServerSocket& operator >> ( std::string& ) const;
00019 
00020   void accept ( ServerSocket& );
00021 
00022 };
00023 
00024 
00025 #endif

Generated on Wed Aug 10 11:56:50 2011 for Softwares from Orpara by  doxygen 1.5.6