Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 804 → Rev 805

/iKopter/trunk/main.m
0,0 → 1,17
//
// main.m
// iKopter
//
// Created by Frank Blumenberg on 20.06.10.
// Copyright de.frankblumenberg 2010. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
int main(int argc, char *argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, nil);
[pool release];
return retVal;
}