Subversion Repositories Projects

Rev

Blame | Last modification | View Log | RSS feed

//
//  main.m
//  Test
//
//  Created by Andreas Jaensch on 17.10.10.
//  Copyright 2010 creActiv Communications. 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;
}