2020-01-30 16:28:18 -05:00
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
@interface GSSpeechRecognitionServer
|
|
|
|
+ (void)start;
|
|
|
|
@end
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
2020-02-01 05:43:06 -05:00
|
|
|
[NSAutoreleasePool new];
|
|
|
|
[GSSpeechRecognitionServer start];
|
|
|
|
return 0;
|
2020-01-30 16:28:18 -05:00
|
|
|
}
|