source: extensions/piwigo_mobile/ios/Piwigo/main.m @ 24736

Last change on this file since 24736 was 12411, checked in by patdenice, 13 years ago

Add piwigo mobile for iOS

File size: 375 bytes
Line 
1//
2//  main.m
3//  Piwigo
4//
5//  Created by Patrice Gauchon on 01/10/11.
6//  Copyright __MyCompanyName__ 2011. All rights reserved.
7//
8
9#import <UIKit/UIKit.h>
10
11int main(int argc, char *argv[]) {
12   
13    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
14    int retVal = UIApplicationMain(argc, argv, nil, @"AppDelegate");
15    [pool release];
16    return retVal;
17}
Note: See TracBrowser for help on using the repository browser.