21 lines
457 B
C
21 lines
457 B
C
|
//
|
||
|
// AppDelegate.h
|
||
|
// OpenSSL-for-iOS
|
||
|
//
|
||
|
// Created by Felix Schulze on 04.12.2010.
|
||
|
// Updated by Schulze Felix on 01.04.12.
|
||
|
// Copyright (c) 2012 Felix Schulze . All rights reserved.
|
||
|
// Web: http://www.felixschulze.de
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
@class ViewController;
|
||
|
|
||
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
||
|
|
||
|
@property (strong, nonatomic) UIWindow *window;
|
||
|
@property (strong, nonatomic) ViewController *viewController;
|
||
|
|
||
|
@end
|