summaryrefslogtreecommitdiff
path: root/navit/iphone/downloader/main.m
blob: 39d344c1f42b7c40e0f2a942842ddd79a7a7dd76 (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;
}