summaryrefslogtreecommitdiff
path: root/navit/iphone/downloader/main.m
blob: e18fb9c5935c2a5b2a0771a4fd51b6b92b92f1e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
//  main.m
//  Downloader
//
//  Created by Nick Geoghegan on 09/08/2011.
//  Copyright 2011 Navit Project. 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;
}