Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
805 - 1
//
2
//  main.m
3
//  iKopter
4
//
5
//  Created by Frank Blumenberg on 20.06.10.
6
//  Copyright de.frankblumenberg 2010. All rights reserved.
7
//
8
 
9
#import <UIKit/UIKit.h>
10
 
11
int main(int argc, char *argv[]) {
12
 
13
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
14
    int retVal = UIApplicationMain(argc, argv, nil, nil);
15
    [pool release];
16
    return retVal;
17
}