source: other-projects/Greenstone-on-iPhone/Web/main.m@ 31175

Last change on this file since 31175 was 24253, checked in by ak19, 13 years ago

Greenstone web interface on iPhone

File size: 347 bytes
Line 
1//
2// main.m
3// Web
4//
5// Created by mac on 7/6/11.
6// Copyright 2011 __MyCompanyName__. 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, nil);
15 [pool release];
16 return retVal;
17}
Note: See TracBrowser for help on using the repository browser.