home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / sampl254.zip / gcc2 / samples / sample4 / printable.h < prev    next >
C/C++ Source or Header  |  1993-10-31  |  271b  |  23 lines

  1. #include "objc/Object.h"
  2.  
  3. @interface PrintableInt: Object
  4. {
  5.   int value;
  6. }
  7. - setInt: (int)aValue;
  8. - print;
  9. @end
  10.  
  11. @interface PrintableString: Object
  12. {
  13.   char *value;
  14. }
  15. - setStr: (char *)aValue;
  16. - print;
  17. @end
  18.  
  19. @interface EOL: PrintableString
  20. {
  21. }
  22. @end
  23.