IGServer.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:0k
- /********************************************************************
- created: 2003/05/11
- file base: IGServer
- file ext: h
- author: liupeng
-
- purpose:
- *********************************************************************/
- #ifndef __INCLUDE_IGSERVER_H__
- #define __INCLUDE_IGSERVER_H__
- class IGServer
- {
- public:
- /*
- * Interface
- */
- virtual int Run() = 0;
-
- virtual bool Create() = 0;
- virtual bool Destroy() = 0;
- virtual ~IGServer(){};
- };
- #endif // __INCLUDE_IGSERVER_H__