1//
2//  main.m
3//  CorePlot-CocoaTouch
4//
5//  Created by Brad Larson on 5/11/2009.
6
7#import <UIKit/UIKit.h>
8
9int main(int argc, char *argv[]) {
10
11    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
12    int retVal = UIApplicationMain(argc, argv, nil, nil);
13    [pool release];
14    return retVal;
15}
16