]> git.saurik.com Git - apple/security.git/blob - tests/TestHostBinaries/KeychainEntitledTestApp/AppDelegate.h
Security-59754.41.1.tar.gz
[apple/security.git] / tests / TestHostBinaries / KeychainEntitledTestApp / AppDelegate.h
1 #import <TargetConditionals.h>
2
3 #if TARGET_OS_OSX
4
5 #import <Cocoa/Cocoa.h>
6 @interface AppDelegate : NSObject <NSApplicationDelegate>
7 @end
8
9 #else
10
11 #import <UIKit/UIKit.h>
12 @interface AppDelegate : UIResponder <UIApplicationDelegate>
13 @property (strong, nonatomic) UIWindow *window;
14 @end
15
16 #endif