Balackfi processor VDK code example
源代码在线查看: input.h
/* =============================================================================
*
* 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_ */
/* ========================================================================== */