snej@0: //
snej@0: //  MYCrypto_iPhoneAppDelegate.m
snej@0: //  MYCrypto-iPhone
snej@0: //
snej@0: //  Created by Jens Alfke on 3/30/09.
snej@0: //  Copyright Jens Alfke 2009. All rights reserved.
snej@0: //
snej@0: 
snej@0: #import "MYCrypto_iPhoneAppDelegate.h"
snej@0: #import "MYErrorUtils.h"
snej@0: 
snej@0: 
snej@0: @implementation MYCrypto_iPhoneAppDelegate
snej@0: 
snej@0: @synthesize window;
snej@0: 
snej@0: 
snej@0: - (void)applicationDidFinishLaunching:(UIApplication *)application {    
snej@0: 
snej@0:     // Override point for customization after application launch
snej@0:     [window makeKeyAndVisible];
snej@2:     /*
snej@0:     static const char *testArgs[] = {"MYCrypto", "Test_All"};
snej@0:     int argc = 2;
snej@0:     const char **argv = testArgs;
snej@0:     RunTestCases(argc,argv);
snej@2:      */
snej@0: }
snej@0: 
snej@0: 
snej@0: - (void)dealloc {
snej@0:     [window release];
snej@0:     [super dealloc];
snej@0: }
snej@0: 
snej@0: 
snej@0: @end