summaryrefslogtreecommitdiff
path: root/main.m
blob: 2183497a030ee33ff301eb7a110e27e8724f854c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* 
 * main.m
 * ------
 *
 * Author: Chris Lee <clee@mg8.org>
 * License: GPL v2 <http://www.opensource.org/licenses/gpl-license.php>
 */
#import <UIKit/UIKit.h>
#import "MobilePushr.h"

#include <stdio.h>

int main(int argc, char **argv)
{
	NSAutoreleasePool *pool = [NSAutoreleasePool new];
	int ret = UIApplicationMain(argc, argv, [MobilePushr class]);
	[pool release];
	return ret;
}