mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 08:51:23 +00:00
16 lines
544 B
Mathematica
16 lines
544 B
Mathematica
|
#import "GSSpeechEngine.h"
|
||
|
|
||
|
/**
|
||
|
* Dummy implementation of a speech engine. Doesn't do anything.
|
||
|
*/
|
||
|
@implementation GSSpeechEngine
|
||
|
+ (GSSpeechEngine*)defaultSpeechEngine { return [[self new] autorelease]; }
|
||
|
- (void)startSpeaking: (NSString*)aString notifyWhenDone: (id)anObject{}
|
||
|
- (void)stopSpeaking {}
|
||
|
- (BOOL)isSpeaking { return NO; }
|
||
|
- (NSArray*)voices { return [NSArray arrayWithObject: @"default"]; }
|
||
|
- (void)setVoice: (NSString*)aVoice {}
|
||
|
- (NSString*)voice { return @"default"; }
|
||
|
- (NSString*)defaultVoice { return @"default"; }
|
||
|
@end
|