home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Examples / AppKit / CurrencyConverter / Converter.h < prev    next >
Text File  |  1996-01-11  |  124b  |  10 lines

  1. #import <AppKit/AppKit.h>
  2.  
  3. @interface Converter : NSObject
  4. {
  5. }
  6.  
  7. - (float)convertAmount:(float)amt byRate:(float)rate;
  8.  
  9. @end
  10.