Newer
Older
Import / applications / RocketMan / Source Code / main.mm
@John John on 29 Dec 2020 557 bytes bulk import from macbookpro checkouts
//
//  main.m
//  iphone-gl-app
//
//  Created by John Ryland on 7/06/09.
//  Copyright InvertedLogic 2009. All rights reserved.
//

#import <UIKit/UIKit.h>
#include "Debug.h"


int main(int argc, char *argv[])
{
    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
    int retVal = UIApplicationMain(argc, argv, nil, @"AppDelegate");

    DebugMessage::debug("XXXXX\n");
	DebugMemory::disable();
	DebugMemory::showMemoryAllocations();
	DebugMemory::showMemoryLeaks();
	DebugMessage::debug("YYYYY\n");
	
    [pool release];
    return retVal;
}