Sha256: a66da287fb680c8823b4e6dfcbecffde63faa633373b0a933ad13e72883fced7

Contents?: true

Size: 503 Bytes

Versions: 4

Compression:

Stored size: 503 Bytes

Contents

//
//  main.m
//  Browser
//
//  Created by adam blum on 9/4/08.
//  Copyright __MyCompanyName__ 2008. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "ServerHost.h"
#import "logging/RhoLog.h"
#undef DEFAULT_LOGCATEGORY
#define DEFAULT_LOGCATEGORY "main"

int main(int argc, char *argv[]) {

	NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];

    int retVal = UIApplicationMain(argc, argv, nil, nil);
    
	[pool release];

    RAWLOG_INFO("Exiting the Runner");

	return retVal;
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rhodes-1.4.2 platform/iphone/main.m
rhodes-1.4.1 platform/iphone/main.m
rhodes-1.4.0 platform/iphone/main.m
rhodes-1.2.2 platform/iphone/main.m