summaryrefslogtreecommitdiffstats
path: root/iphone/examples/ReaderSample/ReaderSample/main.m
blob: 4a373e420036d598167ca4725054a69abea9a9f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
//  main.m
//  ReaderSample
//
//  Created by spadix on 4/14/11.
//

#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;
}