ClientSocket.cpp
上传用户:egreat
上传日期:2007-07-13
资源大小:29k
文件大小:0k
源码类别:

金融证券系统

开发平台:

Visual C++

  1. #include "config.h"
  2. #include "response.h"
  3. #include "ClientSocket.h"
  4. using namespace StockMarket;
  5. ClientSocket::ClientSocket(SocketHandler& h) :TcpSocket(h)
  6. {}
  7. ClientSocket::~ClientSocket()
  8. {}
  9. void ClientSocket::OnConnect()
  10. {}
  11. void ClientSocket::OnRawData(const char * pData , size_t len)
  12. {
  13. ProcessResponsePacket((const uchar*)pData, len, false);
  14. }