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

Telnet服务器

开发平台:

Visual C++

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