devices/devicemocap/ispeech.h
#ifndef __ISPEECH_H__
#define __ISPEECH_H__
#include <windows.h>
enum SpeechCommands
{
eNoCommand,
eStartRecording,
eStopRecording,
ePlay,
eReset
};
class ISpeech
{
public:
ISpeech();
virtual ~ISpeech();
virtual HRESULT CreateFirstConnected(
INuiSensor* pSensor) = 0;
virtual bool IsValid() = 0;
virtual SpeechCommands Process() = 0;
virtual void Stop() = 0;
};
#endif