1
0
mirror of https://github.com/AppleWin/AppleWin.git synced 2025-04-18 21:37:08 +00:00
2014-05-23 22:59:02 +01:00

20 lines
284 B
C++

struct ISpVoice;
class CSpeech
{
public:
CSpeech() :
m_cpVoice(NULL)
{
}
virtual ~CSpeech();
bool Init(void);
void Reset(void);
bool IsEnabled(void) { return m_cpVoice != NULL; }
void Speak(const char* const pBuffer);
private:
ISpVoice* m_cpVoice;
};