istereo
diff src/main.m @ 0:1bb950d0976b
initial commit
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Tue, 06 Sep 2011 08:07:14 +0300 |
parents | |
children | 2c5620f0670c |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/src/main.m Tue Sep 06 08:07:14 2011 +0300 1.3 @@ -0,0 +1,17 @@ 1.4 +// 1.5 +// main.m 1.6 +// istereo 1.7 +// 1.8 +// Created by nuclear on 9/6/11. 1.9 +// Copyright __MyCompanyName__ 2011. All rights reserved. 1.10 +// 1.11 + 1.12 +#import <UIKit/UIKit.h> 1.13 + 1.14 +int main(int argc, char *argv[]) { 1.15 + 1.16 + NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 1.17 + int retVal = UIApplicationMain(argc, argv, nil, nil); 1.18 + [pool release]; 1.19 + return retVal; 1.20 +}