libs-gui/Tools/speech_recognizer/GSSpeechRecognizer.h
Gregory John Casamento fbcc8c6ae4 Add files
2020-02-03 01:02:50 -05:00

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