ChatSocket.cpp
上传用户:qzzxgm
上传日期:2009-12-14
资源大小:1882k
文件大小:1k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // ChatSocket.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ChatClient.h"
  5. #include "ChatSocket.h"
  6. #include "ChatClientDlg.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CChatSocket
  14. CChatSocket::CChatSocket()
  15. {
  16. }
  17. CChatSocket::CChatSocket(CChatClientDlg* pDlg)
  18. {
  19. m_pDlg = pDlg;
  20. }
  21. CChatSocket::~CChatSocket()
  22. {
  23. }
  24. // Do not edit the following lines, which are needed by ClassWizard.
  25. #if 0
  26. BEGIN_MESSAGE_MAP(CChatSocket, CSocket)
  27. //{{AFX_MSG_MAP(CChatSocket)
  28. //}}AFX_MSG_MAP
  29. END_MESSAGE_MAP()
  30. #endif // 0
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CChatSocket member functions
  33. //通知客户端可以结束数据了
  34. void CChatSocket::OnReceive(int nErrorCode) 
  35. {
  36. CSocket::OnReceive(nErrorCode);
  37. //让主对话框处理数据
  38. if(m_pDlg)
  39. m_pDlg->ProcessPendingRead();
  40. }