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