ClientSocket.h
上传用户:posgewe
上传日期:2013-05-17
资源大小:69k
文件大小:1k
源码类别:

Telnet服务器

开发平台:

Visual C++

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