libs-gui/Tools/speech_recognizer/GSSpeechRecognitionServer.h
Gregory John Casamento ea2fe89e5f Fix compilation errors
2020-02-01 05:43:06 -05:00

15 lines
430 B
Objective-C

#import <Foundation/Foundation.h>
@class GSSpeechRecognitionEngine;
/**
* GSSpeechRecognitionServer handles all of the engine-agnostic operations. Currently,
* there aren't any, but when the on-screen text interface is added it should
* go in here.
*/
@interface GSSpeechRecognitionServer : NSObject {
GSSpeechRecognitionEngine *engine;
}
/**
* Returns a shared instance of the speech server.
*/
+ (id)sharedServer;
@end