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

模拟服务器

开发平台:

C/C++

  1. // DBClient.h: interface for the CDBClient class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_DBCONNECT_H__ED4A7208_6DDB_442A_B974_B34DF73F99A5__INCLUDED_)
  5. #define AFX_DBCONNECT_H__ED4A7208_6DDB_442A_B974_B34DF73F99A5__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "NetClient.h"
  10. #include "NetCenter.h"
  11. class CDBCenter : public CNetCenter  
  12. {
  13. public:
  14. CDBCenter();
  15. virtual ~CDBCenter();
  16. public:
  17. BOOL TraceInfo();
  18. };
  19. class CDBClient : public CNetClient  
  20. {
  21. public:
  22. CDBClient(class CDBCenter* pRootCenter, BOOL bAutoFree);
  23. virtual ~CDBClient();
  24. protected:
  25. virtual void RecvPackage(const void* pData, size_t size);
  26. virtual void OnServerEventCreate();
  27. virtual void OnServerEventClose();
  28. private:
  29. };
  30. #endif // !defined(AFX_DBCONNECT_H__ED4A7208_6DDB_442A_B974_B34DF73F99A5__INCLUDED_)