Files
hp16/Classes/HP16ViewController.h
T
2026-02-22 13:24:11 -08:00

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