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