home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / MiniExamples / CellScrollView / FooObject.h < prev    next >
Text File  |  1991-10-10  |  350b  |  22 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.  
  8. #import <objc/Object.h>
  9.  
  10. @interface FooObject:Object
  11. {
  12.   int    intValue;
  13.   char    *stringValue;
  14. }
  15.  
  16. - init;
  17. - free;
  18. - (int)intValue;
  19. - (char *)stringValue;
  20.  
  21. @end
  22.