home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Examples / AppKit / SortingInAction / MergeSort.h < prev    next >
Encoding:
Text File  |  1990-10-09  |  188 b   |  14 lines

  1. #import "GenericSort.h"
  2.  
  3. @interface MergeSort:GenericSort
  4. {
  5.     int *tempData;    /* temporary array to hold merged data */
  6. }
  7.  
  8. /* Methods overridden from superclass */
  9.  
  10. - init;
  11. - sort;
  12.  
  13. @end
  14.