RelayClient.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. // RelayClient.h: interface for the CRelayClient class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_RELAYCLIENT_H__63FC1085_B9C1_49FA_AAC5_C0552E371E27__INCLUDED_)
  5. #define AFX_RELAYCLIENT_H__63FC1085_B9C1_49FA_AAC5_C0552E371E27__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "NetClient.h"
  10. class CRelayClient : public CNetClient  
  11. {
  12. public:
  13. CRelayClient(class CRelayCenter* pRelayCenter, BOOL bAutoFree);
  14. virtual ~CRelayClient();
  15. protected:
  16. virtual void RecvPackage(const void* pData, size_t size);
  17. virtual void DeleteThis() {delete this;}
  18. protected:
  19. virtual void OnStartupFail();
  20. virtual void OnShutdownFail();
  21. virtual void OnServerEventCreate();
  22. virtual void OnServerEventClose();
  23. };
  24. #endif // !defined(AFX_RELAYCLIENT_H__63FC1085_B9C1_49FA_AAC5_C0552E371E27__INCLUDED_)