home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Internet / News / Alexandra.0.82 / Source / KillFile.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-01-30  |  575 b   |  35 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. @interface KillFile:Object
  5. {
  6.     id    nntpServer;
  7.     id    theArticleSet;
  8.     id    theNGSet;
  9.  
  10.     id newsgroupTable;
  11.     id authorTable;
  12.  
  13.     char *path;
  14. }
  15. - setPath;
  16. - init;
  17. - free;
  18.  
  19. - getAuthorTable;
  20. - getThreadTableFor:(const char *)newsgroup;
  21.  
  22. - killUnkillAuthor:(BOOL)doKill author:(const char *)author;
  23. - killUnkillThread:(BOOL)doKill :(char *)subject newsgroup:(id)group;
  24.  
  25. - filterArticles:(id)newsgroup andReloadMatrix:(BOOL)reload;
  26.  
  27. - saveAndFree;
  28.  
  29. - killAuthor:sender;
  30. - killThread:sender;
  31. - kill:sender;
  32. - killSelectionMode:(int)mode;
  33.  
  34. @end
  35.