iPhone/MYCrypto_iPhoneAppDelegate.m
author Jens Alfke <jens@mooseyard.com>
Wed Jul 01 14:19:13 2009 -0700 (2009-07-01)
changeset 26 d9c2a06d4e4e
parent 0 0a6527af039b
permissions -rw-r--r--
Whew, lots and lots of changes accumulated over the past few weeks. Mostly fixes for bugs I discovered while retrofitting Cloudy to use MYCrypto.
snej@0
     1
//
snej@0
     2
//  MYCrypto_iPhoneAppDelegate.m
snej@0
     3
//  MYCrypto-iPhone
snej@0
     4
//
snej@0
     5
//  Created by Jens Alfke on 3/30/09.
snej@0
     6
//  Copyright Jens Alfke 2009. All rights reserved.
snej@0
     7
//
snej@0
     8
snej@0
     9
#import "MYCrypto_iPhoneAppDelegate.h"
snej@0
    10
#import "MYErrorUtils.h"
snej@0
    11
snej@0
    12
snej@0
    13
@implementation MYCrypto_iPhoneAppDelegate
snej@0
    14
snej@0
    15
@synthesize window;
snej@0
    16
snej@0
    17
snej@0
    18
- (void)applicationDidFinishLaunching:(UIApplication *)application {    
snej@0
    19
snej@0
    20
    // Override point for customization after application launch
snej@0
    21
    [window makeKeyAndVisible];
snej@2
    22
    /*
snej@0
    23
    static const char *testArgs[] = {"MYCrypto", "Test_All"};
snej@0
    24
    int argc = 2;
snej@0
    25
    const char **argv = testArgs;
snej@0
    26
    RunTestCases(argc,argv);
snej@2
    27
     */
snej@0
    28
}
snej@0
    29
snej@0
    30
snej@0
    31
- (void)dealloc {
snej@0
    32
    [window release];
snej@0
    33
    [super dealloc];
snej@0
    34
}
snej@0
    35
snej@0
    36
snej@0
    37
@end