home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / DEV.Z / ConverterController.h < prev    next >
Encoding:
Text File  |  1996-07-30  |  368 b   |  18 lines

  1. /*
  2.   You may freely copy, distribute, and reuse the code in this example.
  3.   NeXT disclaims any warranty of any kind, expressed or implied, as to its
  4.   fitness for any particular use.
  5. */
  6.  
  7. #import <AppKit/AppKit.h>
  8.  
  9. @interface ConverterController : NSObject
  10. {
  11.     id converter;
  12.     id dollarField;
  13.     id rateField;
  14.     id totalField;
  15. }
  16. - (void)convert:(id)sender;
  17. @end
  18.