Initial Commit
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
//
|
||||
// HPcalc_hp16AppDelegate.h
|
||||
// HPcalc
|
||||
//
|
||||
// Created by Ken on 8/5/08.
|
||||
// Copyright Ken Staton 2008. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
@class HP16ViewController;
|
||||
@class DisplayView;
|
||||
@class HPCalc;
|
||||
|
||||
|
||||
@interface HP16AppDelegate : NSObject <UIApplicationDelegate> {
|
||||
IBOutlet UIWindow *window;
|
||||
HP16ViewController *hp16ViewController;
|
||||
DisplayView *display;
|
||||
HPCalc *calc;
|
||||
}
|
||||
|
||||
|
||||
@property (nonatomic, strong) UIWindow *window;
|
||||
@property (nonatomic, strong) HP16ViewController *hp16ViewController;
|
||||
@property (nonatomic, strong) DisplayView *display;
|
||||
@property (nonatomic, strong) HPCalc *calc;
|
||||
|
||||
@end
|
||||
|
||||
Reference in New Issue
Block a user