00001 #ifndef TTS_H_ 00002 #define TTS_H_ 00003 00004 #include "wavfile.h" 00005 00006 00007 class tts 00008 { 00009 public: 00010 tts(); 00011 ~tts(); 00012 void setVoice(const char *voice); 00013 void say(const char *sentence); 00014 void toWavFile(const char *sentence, wavfile &outWave); 00015 00016 }; 00017 00018 00019 #endif
1.5.5