Visual studio 2005 thinks that long long int is 64 bit. The difference between
[dasher.git] / Src / Win32 / ActionSpeech.h
blob5267fd9fca197403dd45b2195853d2b5507876d6
1 #ifndef __ActionSpeech_h__
2 #define __ActionSpeech_h__
4 #include <sapi.h>
6 #include "DasherAction.h"
8 class CActionSpeech : public CDasherAction {
9 public:
10 CActionSpeech();
12 // Inherited methods
13 virtual std::string GetName();
14 virtual bool Activate();
15 virtual bool Deactivate();
16 virtual bool GetActive();
17 virtual bool Execute(const std::wstring &strText);
18 virtual void Preview(const std::wstring &strText);
20 private:
21 bool m_bActive;
23 // Pointer to the voice object
24 ISpVoice *pVoice;
27 #endif