31 lines
623 B
Objective-C
31 lines
623 B
Objective-C
//
|
|
// 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
|
|
|