summaryrefslogtreecommitdiffstats
path: root/iphone/examples/EmbedReader/EmbedReader/main.m
blob: e91e4ba6f6b621ac75fa6b3317e6a24247c2dae1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
//  main.m
//  EmbedReader
//
//  Created by spadix on 5/2/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;
}