IPlayer.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
- /********************************************************************
- created: 2003/04/08
- file base: IPlayer
- file ext: h
- author: liupeng
-
- purpose:
- *********************************************************************/
- #ifndef __INCLUDE_IPLAYER_H__
- #define __INCLUDE_IPLAYER_H__
- class IPlayer
- {
- public:
- /*
- * Interface
- */
- virtual bool DispatchTask( LONG lnTaskID ) = 0;
- virtual bool IsWorking() = 0;
- virtual int Run() = 0;
- virtual bool AppendData( const void *pData ) = 0;
-
- virtual bool Create( const char * const pName, const char * const pPassword ) = 0;
- virtual bool Destroy( const char * const pPassword ) = 0;
-
- virtual ~IPlayer(){};
- };
- #endif // __INCLUDE_IPLAYER_H__