NetMeetingSocket.cpp
上传用户:kelland5
上传日期:2016-01-23
资源大小:52k
文件大小:1k
源码类别:

Telnet客户端

开发平台:

Visual C++

  1. //文件名:NetMeetingSocket.cpp CNetMeetingSocket 类的实现文件
  2. #include "stdafx.h"
  3. #include "NetMeetingClient.h"
  4. #include "NetMeetingSocket.h"
  5. #include "NetMeetingClientDlg.h"
  6. // CNetMeetingSocket
  7. CNetMeetingSocket::CNetMeetingSocket(CNetMeetingClientDlg* pDlg)
  8. {
  9. m_pDlg=pDlg;
  10. }
  11. CNetMeetingSocket::~CNetMeetingSocket()
  12. {
  13. }
  14. // CNetMeetingSocket 成员函数
  15. //一旦该类对象与服务器的Socket连通以后,
  16. //此成员函数就负责与服务器的Socket进行数据传送
  17. void CNetMeetingSocket::OnReceive(int nErrorCode)
  18. {
  19. CSocket::OnReceive(nErrorCode);
  20. m_pDlg->ProcessPendingRead();
  21. }