| 1 | /* |
| 2 | * main.m |
| 3 | * ------ |
| 4 | * |
| 5 | * Author: Chris Lee <clee@mg8.org> |
| 6 | * License: GPL v2 <http://www.opensource.org/licenses/gpl-license.php> |
| 7 | */ |
| 8 | #import <UIKit/UIKit.h> |
| 9 | #import "MobilePushr.h" |
| 10 | |
| 11 | #include <stdio.h> |
| 12 | |
| 13 | int main(int argc, char **argv) |
| 14 | { |
| 15 | NSAutoreleasePool *pool = [NSAutoreleasePool new]; |
| 16 | int ret = UIApplicationMain(argc, argv, [MobilePushr class]); |
| 17 | [pool release]; |
| 18 | return ret; |
| 19 | } |
| 20 | |