mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 15:30:38 +00:00
12 lines
241 B
Objective-C
12 lines
241 B
Objective-C
#import "GSSpeechRecognitionServer.h"
|
|
#import <AppKit/NSSpeechRecognizer.h>
|
|
|
|
|
|
@interface GSSpeechRecognizer : NSSpeechRecognizer {
|
|
NSString *currentVoice;
|
|
id delegate;
|
|
}
|
|
- (id)init;
|
|
- (id)delegate;
|
|
- (void)setDelegate: (id)aDelegate;
|
|
@end
|