MySocket.h
上传用户:zslianheng
上传日期:2013-04-03
资源大小:946k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Visual C++

  1. /***************************************************************************
  2.  *                                                                         *
  3.  *   This program is free software; you can redistribute it and/or modify  *
  4.  *   it under the terms of the GNU General Public License as published by  *
  5.  *   the Free Software Foundation; either version 2 of the License, or     *
  6.  *   (at your option) any later version.                                   *
  7.  *                                                                         *
  8.  *   copyright            : (C) 2002 by Zhang Yong                         *
  9.  *   email                : z-yong163@163.com                              *
  10.  ***************************************************************************/
  11. #if !defined(AFX_MYSOCKET_H__D3BD218F_19E6_47E1_97BC_0391F0A81230__INCLUDED_)
  12. #define AFX_MYSOCKET_H__D3BD218F_19E6_47E1_97BC_0391F0A81230__INCLUDED_
  13. #if _MSC_VER > 1000
  14. #pragma once
  15. #endif // _MSC_VER > 1000
  16. // MySocket.h : header file
  17. //
  18. class SocketListener;
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CMySocket command target
  21. class CMySocket : public CAsyncSocket
  22. {
  23. // Attributes
  24. public:
  25. // Operations
  26. public:
  27. CMySocket(SocketListener *l);
  28. virtual ~CMySocket();
  29. // Overrides
  30. public:
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CMySocket)
  33. public:
  34. virtual void OnReceive(int nErrorCode);
  35. virtual void OnConnect(int nErrorCode);
  36. virtual void OnSend(int nErrorCode);
  37. virtual void OnClose(int nErrorCode);
  38. //}}AFX_VIRTUAL
  39. // Generated message map functions
  40. //{{AFX_MSG(CMySocket)
  41. // NOTE - the ClassWizard will add and remove member functions here.
  42. //}}AFX_MSG
  43. // Implementation
  44. private:
  45. SocketListener *listener;
  46. };
  47. /////////////////////////////////////////////////////////////////////////////
  48. //{{AFX_INSERT_LOCATION}}
  49. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  50. #endif // !defined(AFX_MYSOCKET_H__D3BD218F_19E6_47E1_97BC_0391F0A81230__INCLUDED_)