Balackfi processor VDK code example

源代码在线查看: input.h

软件大小: 28 K
上传用户: zln12345
关键词: processor Balackfi example code
下载地址: 免注册下载 普通下载 VIP

相关代码

				/* =============================================================================
				 *
				 *  Description: This is a C++ header file for Thread Input
				 *
				 * -----------------------------------------------------------------------------
				 *  Comments:
				 *
				 * ===========================================================================*/
				
				#ifndef _Input_H_    
				#define _Input_H_
				
				#include "VDK.h"
				
				class Input : public VDK::Thread 
				{
				public:
				    Input(VDK::Thread::ThreadCreationBlock&);
				    virtual ~Input();
				    virtual void Run();
				    virtual int ErrorHandler();
				    static VDK::Thread* Create(VDK::Thread::ThreadCreationBlock&);
				
				private:
					VDK::ThreadID m_audioDst;
				};
				
				#endif /* _Input_H_ */
				
				/* ========================================================================== */
							

相关资源