summaryrefslogtreecommitdiff
path: root/plugins/!NotAdopted/WinterSpeak/speak/config/speech_interface.h
diff options
context:
space:
mode:
authorTobias Weimer <wishmaster51@googlemail.com>2013-10-19 21:33:25 +0000
committerTobias Weimer <wishmaster51@googlemail.com>2013-10-19 21:33:25 +0000
commitce83b46d4548feb14cc4fb521a22de135c5c6dfa (patch)
tree5357d9cdcd003abf4d917f61179d500b1cde6179 /plugins/!NotAdopted/WinterSpeak/speak/config/speech_interface.h
parentbd6ed4be499ccd60328ec16fcfc1a0a5664bbdc6 (diff)
Winter Speak has been adopted.
git-svn-id: http://svn.miranda-ng.org/main/trunk@6544 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/!NotAdopted/WinterSpeak/speak/config/speech_interface.h')
-rw-r--r--plugins/!NotAdopted/WinterSpeak/speak/config/speech_interface.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/plugins/!NotAdopted/WinterSpeak/speak/config/speech_interface.h b/plugins/!NotAdopted/WinterSpeak/speak/config/speech_interface.h
deleted file mode 100644
index 69d2d44e14..0000000000
--- a/plugins/!NotAdopted/WinterSpeak/speak/config/speech_interface.h
+++ /dev/null
@@ -1,48 +0,0 @@
-#ifndef guard_speak_config_speech_interface_h
-#define guard_speak_config_speech_interface_h
-//==============================================================================
-// Miranda Speak Plugin, © 2002 Ryan Winter
-//==============================================================================
-
-#include "defs/voice_desc.h"
-
-#include <string>
-#include <vector>
-
-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::string &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<std::string> getAvailableEngines();
-};
-
-//==============================================================================
-//
-// Summary : Configure a text to speech object
-//
-// Description : Encapsulate the different speech engines available
-//
-//==============================================================================
-
-#endif \ No newline at end of file