home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / Palettes / ConnectDemo / ExtList.h < prev    next >
Encoding:
Text File  |  1993-01-15  |  225 b   |  15 lines

  1.  
  2. #import <appkit/appkit.h>
  3. #import <objc/List.h>
  4.  
  5. typedef    int SortFunc(const void *,const void *);
  6.  
  7. @interface ExtList:List
  8. {
  9. }
  10.  
  11. - sortUsingFunc:(SortFunc *)func;
  12. - (int)insertOrdered:object usingFunc:(SortFunc *)func;
  13.  
  14. @end
  15.