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

模拟服务器

开发平台:

C/C++

  1. /********************************************************************
  2. created: 2003/05/11
  3. file base: IGServer
  4. file ext: h
  5. author: liupeng
  6. purpose:
  7. *********************************************************************/
  8. #ifndef __INCLUDE_IGSERVER_H__
  9. #define __INCLUDE_IGSERVER_H__
  10. class IGServer
  11. {
  12. public:
  13. /*
  14.  * Interface
  15.  */
  16. virtual int  Run() = 0;
  17. virtual bool Create() = 0;
  18. virtual bool Destroy() = 0;
  19. virtual ~IGServer(){};
  20. };
  21. #endif // __INCLUDE_IGSERVER_H__