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