home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / Project_2 / Calculator.m < prev    next >
Text File  |  1993-01-19  |  325b  |  20 lines

  1.  
  2. /* Generated by Interface Builder */
  3.  
  4. #import <appkit/Form.h>
  5. #import "Calculator.h"
  6.  
  7. @implementation Calculator
  8.  
  9. - calculate:sender
  10. {
  11.     float degreesF;
  12.     [inputForm selectTextAt:0];
  13.     degreesF = ( (9.0 * [inputForm floatValueAt:0])/ 5.0) +32.0;
  14.     [outputForm setFloatValue:degreesF at:0];
  15.     return self;
  16. }
  17.  
  18.  
  19. @end
  20.