Complete initial implementation of speech recognizer

This commit is contained in:
Gregory John Casamento 2020-02-04 05:26:52 -05:00
parent 8c35633a56
commit 72697f699c
6 changed files with 82 additions and 18 deletions

View file

@ -26,6 +26,7 @@
#define _NSSpeechRecognizer_h_GNUSTEP_GUI_INCLUDE
#import <Foundation/NSObject.h>
#import <AppKit/AppKitDefines.h>
#if OS_API_VERSION(MAC_OS_X_VERSION_10_0, GS_API_LATEST)
@ -34,7 +35,7 @@ extern "C" {
#endif
@protocol NSSpeechRecognizerDelegate;
@interface NSSpeechRecognizer : NSObject
{
id<NSSpeechRecognizerDelegate> _delegate;
@ -75,6 +76,8 @@ extern "C" {
didRecognizeCommand: (NSString *)command;
@end
APPKIT_EXPORT NSString *GSSpeechRecognizerDidRecognizeWordNotification;
#if defined(__cplusplus)
}
#endif