ChatSock.h
上传用户:wpp2016
上传日期:2010-02-01
资源大小:1250k
文件大小:1k
源码类别:

Telnet服务器

开发平台:

Visual C++

  1. #if !defined(AFX_CHATSOCK_H__2491CCE5_FA7C_11D3_92E0_5254AB172F50__INCLUDED_)
  2. #define AFX_CHATSOCK_H__2491CCE5_FA7C_11D3_92E0_5254AB172F50__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // ChatSock.h : header file
  7. //
  8. class CAnyServerDoc;
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CChatSock command target
  11. class CChatSock : public CSocket
  12. {
  13. // Attributes
  14. public:
  15. // Operations
  16. public:
  17. CChatSock();
  18. CChatSock(CAnyServerDoc* pDoc);
  19. virtual ~CChatSock();
  20. CSocketFile* m_pFile;
  21. CArchive* m_pArchiveIn;
  22. CArchive* m_pArchiveOut;
  23. CAnyServerDoc* m_pDoc;
  24. // Overrides
  25. public:
  26. void init();
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CChatSock)
  29. public:
  30. virtual void OnReceive(int nErrorCode);
  31. //}}AFX_VIRTUAL
  32. // Generated message map functions
  33. //{{AFX_MSG(CChatSock)
  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 Visual C++ will insert additional declarations immediately before the previous line.
  42. #endif // !defined(AFX_CHATSOCK_H__2491CCE5_FA7C_11D3_92E0_5254AB172F50__INCLUDED_)