![]() |
ServerSocket.hGo to the documentation of this file.00001 #ifndef _SERVERSOCKET_H 00002 #define _SERVERSOCKET_H 00003 00004 #include <TcpSocket.h> 00005 #include <ISocketHandler.h> 00006 00007 00008 class ServerSocket : public TcpSocket 00009 { 00010 public: 00011 ServerSocket(ISocketHandler& ); 00012 ~ServerSocket(); 00013 00014 void OnLine(const std::string& ); 00015 }; 00016 00017 00018 00019 00020 #endif // _SERVERSOCKET_H |