mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 13:40:54 +00:00
21 lines
651 B
C
21 lines
651 B
C
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
/**
|
||
|
* GSSpeechRecognitionEngine is an abstract speech server. One concrete subclass should
|
||
|
* be implemented for each speech engine. Currently, only one may be compiled
|
||
|
* in to the speech server at any given time. This limitation may be removed
|
||
|
* in future if pluggable speech engines are considered beneficial.
|
||
|
*/
|
||
|
@interface GSSpeechRecognitionEngine : NSObject
|
||
|
@end
|
||
|
|
||
|
@interface NSObject (GSSpeechRecognitionEngineDelegate)
|
||
|
@end
|
||
|
|
||
|
@interface GSSpeechRecognitionEngine (Default)
|
||
|
/**
|
||
|
* Returns a new instance of the default speech engine.
|
||
|
*/
|
||
|
+ (GSSpeechRecognitionEngine*)defaultSpeechRecognitionEngine;
|
||
|
@end
|