home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / c / objam01.lha / objam / test / fooObject.h next >
Encoding:
C/C++ Source or Header  |  1994-10-24  |  197 b   |  14 lines

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