From 397e25f2b71347c7c83495fe5b25496ff3b02b75 Mon Sep 17 00:00:00 2001 From: Philip Schell Date: Sat, 19 Oct 2013 13:05:02 +0000 Subject: WinterSpeak: ticket:269 WinterSpeak now rewritten git-svn-id: http://svn.miranda-ng.org/main/trunk@6532 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/WinterSpeak/src/SpeechInterface.h | 32 +++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 plugins/WinterSpeak/src/SpeechInterface.h (limited to 'plugins/WinterSpeak/src/SpeechInterface.h') diff --git a/plugins/WinterSpeak/src/SpeechInterface.h b/plugins/WinterSpeak/src/SpeechInterface.h new file mode 100644 index 0000000000..eec7eae4f0 --- /dev/null +++ b/plugins/WinterSpeak/src/SpeechInterface.h @@ -0,0 +1,32 @@ +#pragma once + +#include + +class TextToSpeech; + +class SpeechInterface +{ + public: + SpeechInterface(); + ~SpeechInterface(); + + //-------------------------------------------------------------------------- + // Description : create the text to speech object + // Parameters : engine - the name of the engine to create + // Returns : an instance of the text to speech engine + //-------------------------------------------------------------------------- + TextToSpeech * createTts(std::wstring &engine) const; + + //-------------------------------------------------------------------------- + // Description : configure the tts object + // Parameters : tts - the tts object to configure + // desc - the description of the voice + //-------------------------------------------------------------------------- + void configureTts(TextToSpeech *tts, const VoiceDesc &desc) const; + + //-------------------------------------------------------------------------- + // Description : create a vector of available engines + //-------------------------------------------------------------------------- + std::vector getAvailableEngines(); +}; + -- cgit v1.2.3