ServerSocket.h
上传用户:cjwgreen1
上传日期:2013-01-27
资源大小:24k
文件大小:1k
源码类别:

Telnet服务器

开发平台:

Unix_Linux

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