Files
MWPhotoBrowser/main.m
Michael Waterfall c5066cec57 Initial commit
2010-10-21 00:50:19 +01:00

18 lines
362 B
Objective-C

//
// main.m
// MWPhotoBrowser
//
// Created by Michael Waterfall on 14/10/2010.
// Copyright 2010 d3i. All rights reserved.
//
#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;
}