home *** CD-ROM | disk | FTP | other *** search
- #import <appkit/appkit.h>
- #import <indexing/indexing.h>
-
- @interface MailBox : Object <IXRecordTranscription>
- {
- char *name;
- time_t mboxtime;
- time_t toctime;
- off_t mboxsize;
- off_t tocsize;
- int mboxfd,tocfd;
- char *tocbuf,*mboxbuf;
- int toclen,mboxlen;
- }
-
- +validateAllBoxes;
- +getBox:(const char *)name;
-
- -finishReading;
- -source:aTranscriber didReadRecord:(unsigned int)aHandle;
- -source:aTranscriber willWriteRecord:(unsigned int)aHandle;
-
- -(int)validateBox;
- @end
-