home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OpenStep (Enterprise)
/
OpenStepENTCD.toast
/
OEDEV
/
DEV.Z
/
Converter.m
< prev
next >
Wrap
Text File
|
1996-07-30
|
332b
|
17 lines
/*
You may freely copy, distribute, and reuse the code in this example.
NeXT disclaims any warranty of any kind, expressed or implied, as to its
fitness for any particular use.
*/
#import "Converter.h"
@implementation Converter
- (float)convertAmount:(float)amount byRate:(float)rate
{
return (amount * rate);
}
@end