Logo
~Sockets~
~Examples~
~Contact~


ClientSocket.h

Go 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
Page, code, and content Copyright (C) 2006 by Anders Hedström
Generated on Mon Aug 29 20:21:47 2005 for C++ Sockets by  doxygen 1.4.4