// // HPcalc_hp16AppDelegate.h // HPcalc // // Created by Ken on 8/5/08. // Copyright Ken Staton 2008. All rights reserved. // #import @class HP16ViewController; @class DisplayView; @class HPCalc; @interface HP16AppDelegate : NSObject { 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