activegs-ios/ActiveGS_iOS/main.mm

18 lines
525 B
Plaintext
Raw Normal View History

2016-03-26 16:16:01 +00:00
/*
ActiveGS, Copyright 2004-2016 Olivier Goguel, https://github.com/ogoguel/ActiveGS
Based on Kegs, Copyright 2004 Kent Dickey, https://kegs.sourceforge.net
This code is covered by the GNU GPL licence
*/
#import <UIKit/UIKit.h>
#import "activegsAppDelegate.h"
int main(int argc, char *argv[]) {
2016-03-31 21:21:48 +00:00
@autoreleasepool {
2016-03-26 16:16:01 +00:00
// int retVal = UIApplicationMain(argc, argv, nil, nil);
2016-03-31 21:21:48 +00:00
int retVal = UIApplicationMain(argc, argv, nil, NSStringFromClass([activegsAppDelegate class]));
return retVal;
}
2016-03-26 16:16:01 +00:00
}