iPhone/MYCrypto_iPhoneAppDelegate.h
author Jens Alfke <jens@mooseyard.com>
Fri Jun 05 08:57:18 2009 -0700 (2009-06-05)
changeset 20 df9da0f6b358
permissions -rw-r--r--
Factored out the name accessors of MYParsedCertificate into a new class MYCertificateName, so that both subject and issuer can be accessed. A bit of other cleanup too.
snej@0
     1
//
snej@0
     2
//  MYCrypto_iPhoneAppDelegate.h
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 <UIKit/UIKit.h>
snej@0
    10
snej@0
    11
@interface MYCrypto_iPhoneAppDelegate : NSObject <UIApplicationDelegate> {
snej@0
    12
    UIWindow *window;
snej@0
    13
}
snej@0
    14
snej@0
    15
@property (nonatomic, retain) IBOutlet UIWindow *window;
snej@0
    16
snej@0
    17
@end
snej@0
    18