Initial Commit

This commit is contained in:
ken
2026-02-22 13:24:11 -08:00
commit fcd6316c7f
207 changed files with 20533 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
//
// 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