changed git call from https to git readonly
[atutor.git] / mods / atsocial_iphone_app / main.m
1 //
2 //  main.m
3 //  ATutor
4 //
5 //  Created by Quang Anh Do on 25/05/2010.
6 //  Copyright Quang Anh Do 2010. All rights reserved.
7 //
8
9 #import <UIKit/UIKit.h>
10
11 int main(int argc, char *argv[]) {
12     
13     NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
14     int retVal = UIApplicationMain(argc, argv, nil, @"ATutorAppDelegate");
15     [pool release];
16     return retVal;
17 }