Blame client/iOS/main.m

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