home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / sampl254.zip / gcc2 / samples / sample5 / Float.h < prev    next >
Text File  |  1993-11-07  |  105b  |  12 lines

  1. #import <objc/Object.h>
  2.  
  3. @interface Float: Object
  4. {
  5.   float value;
  6. }
  7.  
  8. - init: (float) x;
  9. - report;
  10.  
  11. @end
  12.