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

书籍源码

开发平台:

Visual C++

  1. #if !defined(AFX_LISTENINGSOCKET_H__758016DD_8715_11D6_8F32_00E04CE76240__INCLUDED_)
  2. #define AFX_LISTENINGSOCKET_H__758016DD_8715_11D6_8F32_00E04CE76240__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // ListeningSocket.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CListeningSocket command target
  10. class CChatSvrDlg;
  11. class CListeningSocket : public CSocket
  12. {
  13. // Attributes
  14. public:
  15. // Operations
  16. public:
  17. CListeningSocket();
  18. CListeningSocket(CChatSvrDlg* pDlg);
  19. virtual ~CListeningSocket();
  20. // Overrides
  21. public:
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CListeningSocket)
  24. public:
  25. virtual void OnAccept(int nErrorCode);
  26. //}}AFX_VIRTUAL
  27. // Generated message map functions
  28. //{{AFX_MSG(CListeningSocket)
  29. // NOTE - the ClassWizard will add and remove member functions here.
  30. //}}AFX_MSG
  31. // Implementation
  32. protected:
  33. CChatSvrDlg* m_pDlg;
  34. };
  35. /////////////////////////////////////////////////////////////////////////////
  36. //{{AFX_INSERT_LOCATION}}
  37. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  38. #endif // !defined(AFX_LISTENINGSOCKET_H__758016DD_8715_11D6_8F32_00E04CE76240__INCLUDED_)