home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer) / NeXT_Developer-3.3.iso / NextDeveloper / Examples / IndexingKit / Ledger / GlobalThings.h < prev    next >
Encoding:
Text File  |  1993-01-25  |  425 b   |  18 lines

  1. #import <objc/Object.h>
  2.  
  3. #define GLOBALVARIDENT "Global_Things"
  4. @interface GlobalThings:Object
  5. {
  6.     int currentSerial;
  7.     int runTimeHandle;
  8. }
  9. - init;
  10. - (const char *)identification;
  11. // implement IXRecordTranscription protocol for faster serialization.
  12. - source:aSource didReadRecord:(unsigned)record;
  13. - source:aSource willWriteRecord:(unsigned)record; 
  14. - (int )currentSerial;
  15. - (int )consumeSerial;
  16. - (unsigned int)handle;
  17. @end
  18.