home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / Programming / Documents / OOPClass / Labs / RPNCalculator / Solution / Stack.h < prev    next >
Encoding:
Text File  |  1992-08-11  |  143 b   |  16 lines

  1. // Stack.h
  2. #import <objc/Storage.h>
  3.  
  4. @interface Stack : Storage
  5.  
  6.  
  7. }
  8.  
  9. - push:(float)aNumber;
  10. - (float)pop;
  11. - printStack;
  12. - (float)top;
  13.  
  14. @end
  15.