diff options
Diffstat (limited to 'iphone/FixMyStreet/main.m')
-rw-r--r-- | iphone/FixMyStreet/main.m | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/iphone/FixMyStreet/main.m b/iphone/FixMyStreet/main.m new file mode 100644 index 000000000..05f436018 --- /dev/null +++ b/iphone/FixMyStreet/main.m @@ -0,0 +1,16 @@ +// +// main.m +// FixMyStreet +// +// Created by Matthew on 25/09/2008. +// Copyright UK Citizens Online Democracy 2008. 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; +} |