home *** CD-ROM | disk | FTP | other *** search
- #import "objc/Object.h"
-
- @interface Calc:Object
- {
- int pendingOperation;
- double xRegister;
- }
-
- - init;
- - (void)clearAll;
- - (double)performOperationWith:(double)value;
- - (double)setOperation:(int)operator forValue:(double)value;
- - (void)changePendingOperation:(int)operator;
-
- @end
-