mirror of
https://github.com/passepartoutvpn/openssl-apple.git
synced 2025-01-26 02:32:33 +00:00
19 lines
360 B
Objective-C
19 lines
360 B
Objective-C
//
|
|
// OpenSSL_for_iPhoneAppDelegate.h
|
|
// OpenSSL-for-iPhone
|
|
//
|
|
// Created by Felix Schulze on 01.02.2010.
|
|
// Copyright Felix Schulze 2010. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface OpenSSL_for_iPhoneAppDelegate : NSObject <UIApplicationDelegate> {
|
|
UIWindow *window;
|
|
}
|
|
|
|
@property (nonatomic, retain) IBOutlet UIWindow *window;
|
|
|
|
@end
|
|
|