home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / DEV.Z / Converter.h < prev    next >
Encoding:
Text File  |  1996-07-30  |  313 b   |  15 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 Converter : NSObject
  10. {
  11. }
  12. - (float)convertAmount:(float)amount byRate:(float)rate;
  13.  
  14. @end
  15.