ClientSocket.h
上传用户:dzbfjx
上传日期:2015-04-22
资源大小:42k
文件大小:1k
源码类别:

Telnet客户端

开发平台:

Visual C++

  1. #if !defined(AFX_CLIENTSOCKET_H__42C5C9C7_3102_11D2_9A30_00C04FB78B23__INCLUDED_)
  2. #define AFX_CLIENTSOCKET_H__42C5C9C7_3102_11D2_9A30_00C04FB78B23__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // ClientSocket.h : header file
  7. //
  8. #include <afxsock.h>
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CClientSocket command target
  11. class CTelnetView;
  12. class CClientSocket : public CAsyncSocket
  13. {
  14. // Attributes
  15. public:
  16. // Operations
  17. public:
  18. CClientSocket(CTelnetView * cView);
  19. virtual ~CClientSocket();
  20. // Overrides
  21. public:
  22. CTelnetView * cView;
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CClientSocket)
  25. public:
  26. virtual void OnClose(int nErrorCode);
  27. virtual void OnConnect(int nErrorCode);
  28. virtual void OnOutOfBandData(int nErrorCode);
  29. virtual void OnReceive(int nErrorCode);
  30. virtual void OnSend(int nErrorCode);
  31. //}}AFX_VIRTUAL
  32. // Generated message map functions
  33. //{{AFX_MSG(CClientSocket)
  34. // NOTE - the ClassWizard will add and remove member functions here.
  35. //}}AFX_MSG
  36. // Implementation
  37. protected:
  38. };
  39. /////////////////////////////////////////////////////////////////////////////
  40. //{{AFX_INSERT_LOCATION}}
  41. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  42. #endif // !defined(AFX_CLIENTSOCKET_H__42C5C9C7_3102_11D2_9A30_00C04FB78B23__INCLUDED_)