1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/iPhone/MYCrypto_iPhoneAppDelegate.m Sat Apr 04 20:42:03 2009 -0700
1.3 @@ -0,0 +1,36 @@
1.4 +//
1.5 +// MYCrypto_iPhoneAppDelegate.m
1.6 +// MYCrypto-iPhone
1.7 +//
1.8 +// Created by Jens Alfke on 3/30/09.
1.9 +// Copyright Jens Alfke 2009. All rights reserved.
1.10 +//
1.11 +
1.12 +#import "MYCrypto_iPhoneAppDelegate.h"
1.13 +#import "MYErrorUtils.h"
1.14 +
1.15 +
1.16 +@implementation MYCrypto_iPhoneAppDelegate
1.17 +
1.18 +@synthesize window;
1.19 +
1.20 +
1.21 +- (void)applicationDidFinishLaunching:(UIApplication *)application {
1.22 +
1.23 + // Override point for customization after application launch
1.24 + [window makeKeyAndVisible];
1.25 +
1.26 + static const char *testArgs[] = {"MYCrypto", "Test_All"};
1.27 + int argc = 2;
1.28 + const char **argv = testArgs;
1.29 + RunTestCases(argc,argv);
1.30 +}
1.31 +
1.32 +
1.33 +- (void)dealloc {
1.34 + [window release];
1.35 + [super dealloc];
1.36 +}
1.37 +
1.38 +
1.39 +@end