Pushr (master) :  summary log tree commit diff
path: root/main.m blob: 2183497a030ee33ff301eb7a110e27e8724f854c
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
13int 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