home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1994 June / NEBULA_SE.ISO / SourceCode / OOP_Course / Labs / Converter / Converter.h < prev    next >
Encoding:
Text File  |  1993-01-19  |  209 b   |  18 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. @interface Converter:Object
  5. {
  6.     id    input;
  7.     id    output;
  8.     id    inputLabel;
  9.     id    outputLabel;
  10.     BOOL convertingTemp;
  11. }
  12.  
  13. - convert:sender;
  14. - selectWt:sender;
  15. - selectTemp:sender;
  16.  
  17. @end
  18.