home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.bin / SourceCode / Palettes / TTools / TToolsPalette / Utilities.subproj / SortedStorageAgent.h < prev    next >
Encoding:
Text File  |  1993-11-09  |  556 b   |  19 lines

  1. /* SortedStorageAgent.h
  2.  * Written By:  Thomas Burkholder
  3.  *
  4.  * You may freely copy, distribute, and reuse the code in this example.
  5.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  6.  * fitness for any particular use.
  7.  */
  8.  
  9. @protocol SortedStorageAgent
  10.  
  11. - subdirectoryFor:(void *)anElement sender:sender;
  12. - (BOOL)isLeaf:(void *)anElement sender:sender;
  13. - (const char *)displayStringFor:(void *)anElement sender:sender;
  14. - (int)compare:(void *)first with:(void *)second sender:sender;
  15. - (const char *)titleOfColumn:(int)col;
  16.  
  17. @end
  18.  
  19.