24 lines
319 B
Objective-C
24 lines
319 B
Objective-C
//
|
|
// HP16ViewController.h
|
|
// HPcalc
|
|
//
|
|
// Created by Ken on 8/5/08.
|
|
// Copyright 2008 Ken Staton. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class HPCalc;
|
|
|
|
|
|
|
|
@interface HP16ViewController : UIViewController {
|
|
HPCalc *thecalc;
|
|
}
|
|
|
|
- (void)calcInstance:(id)calc;
|
|
- (IBAction)keyPressed:(id)sender;
|
|
|
|
|
|
@end
|