Blame client/iOS/main.m

Packit Service fa4841
/*
Packit Service fa4841
 Main App Entry
Packit Service b1ea74
Packit Service fa4841
 Copyright 2013 Thincast Technologies GmbH, Author: Martin Fleisz
Packit Service b1ea74
Packit Service b1ea74
 This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
Packit Service b1ea74
 If a copy of the MPL was not distributed with this file, You can obtain one at
Packit Service b1ea74
 http://mozilla.org/MPL/2.0/.
Packit Service fa4841
 */
Packit Service fa4841
Packit Service fa4841
#import <UIKit/UIKit.h>
Packit Service fa4841
Packit Service fa4841
int main(int argc, char *argv[])
Packit Service b1ea74
{
Packit Service b1ea74
	NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Packit Service b1ea74
	int retVal = UIApplicationMain(argc, argv, nil, nil);
Packit Service b1ea74
	[pool release];
Packit Service b1ea74
	return retVal;
Packit Service fa4841
}