home *** CD-ROM | disk | FTP | other *** search
/ Dream 41 / Amiga_Dream_41.iso / Amiga / Programmation / c / gcc / objam02.lha / objam / test / fooObject.h next >
Encoding:
C/C++ Source or Header  |  1995-04-16  |  209 b   |  15 lines

  1. #include <objc/Object.h>
  2.  
  3. @interface FooObject: Object
  4. {
  5.   unsigned int foo;
  6. }
  7.  
  8. - setFoo:(unsigned int)val;
  9. - printFoo;
  10. - (unsigned int)getFoo;
  11. - read:(TypedStream*)stream;
  12. - write:(TypedStream*)stream;
  13.  
  14. @end
  15.