home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / Mail / Bundles / EnhanceMail-2.1-MIHS / MailBox.h < prev    next >
Encoding:
Text File  |  1997-04-25  |  1.1 KB  |  43 lines

  1. /* -*-C-*-
  2. *******************************************************************************
  3. *
  4. * File:         MailBox.h
  5. * RCS:          /usr/local/sources/CVS/EnhanceMail/MailBox.h,v 1.2 1997/04/26 01:08:58 tom Exp
  6. * Description:  
  7. * Author:       Carl Edman
  8. * Created:      Fri Oct 13 11:48:24 1995
  9. * Modified:     Wed Mar 27 09:50:34 1996 (Carl Edman) cedman@capitalist.princeton.edu
  10. * Language:     C
  11. * Package:      N/A
  12. * Status:       Experimental (Do Not Distribute)
  13. *
  14. * (C) Copyright 1995, but otherwise this file is perfect freeware.
  15. *
  16. *******************************************************************************
  17. */
  18.  
  19. #import <appkit/appkit.h>
  20. #import "MailApp.h"
  21.  
  22. @interface EnhanceMailBox : MailBox
  23. - (int)numberOfNonIndexedMessages;
  24. - createStore;
  25. - updateStore;
  26. - maybeUpdateStore;
  27. - deleteStore;
  28. - (BOOL)hasStore;
  29. - (int)storeSize;
  30. - query:(const char *)expr;
  31. @end
  32.  
  33. @interface MailBox(EnhanceMailBox)
  34. - (int)numberOfNonIndexedMessages;
  35. - createStore;
  36. - updateStore;
  37. - maybeUpdateStore;
  38. - deleteStore;
  39. - (BOOL)hasStore;
  40. - (int)storeSize;
  41. - query:(const char *)expr;
  42. @end
  43.