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