SocketFromServer.h
上传用户:yffx2008
上传日期:2014-10-12
资源大小:12414k
文件大小:1k
源码类别:

交通/航空行业

开发平台:

Visual C++

  1. #if !defined(AFX_SOCKETFROMSERVER_H__27BA8BE1_62B1_11D8_B346_0060975FFAEE__INCLUDED_)
  2. #define AFX_SOCKETFROMSERVER_H__27BA8BE1_62B1_11D8_B346_0060975FFAEE__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // SocketFromServer.h : header file
  7. //
  8. #include "Afxsock.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CSocketFromServer command target
  11. class CProcSM;
  12. class CSocketFromServer : public CSocket
  13. {
  14. // Attributes
  15. public:
  16. // Operations
  17. public:
  18. CSocketFromServer();
  19. CSocketFromServer(CProcSM *m_pParent);
  20. virtual ~CSocketFromServer();
  21. // Overrides
  22. public:
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CSocketFromServer)
  25. //}}AFX_VIRTUAL
  26. // Generated message map functions
  27. //{{AFX_MSG(CSocketFromServer)
  28. // NOTE - the ClassWizard will add and remove member functions here.
  29. //}}AFX_MSG
  30. // Implementation
  31. protected:
  32. virtual void OnClose(int nErrorCode);
  33. virtual void OnReceive(int nErrorCode);
  34. private:
  35. CProcSM *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_SOCKETFROMSERVER_H__27BA8BE1_62B1_11D8_B346_0060975FFAEE__INCLUDED_)