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

  1. /* SortedListIB.m
  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. #import "SortedListIB.h"
  10.  
  11. @implementation SortedList (IBImageCategory)
  12.  
  13. - (NXImage *)getIBImage
  14. {
  15.     return [NXImage findImageNamed:"SortedListIcon"];
  16. }
  17.  
  18. @end
  19.  
  20. @implementation ClassAgent (IBImageCategory)
  21.  
  22. - (NXImage *)getIBImage
  23. {
  24.     return [NXImage findImageNamed:"ClassAgentIcon"];
  25. }
  26.  
  27. @end