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

  1. /* RankerInspector.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. #import <appkit/appkit.h>
  10. #import <apps/InterfaceBuilder.h>
  11. #import "Ranker.h"
  12.  
  13. // Category of Ranker that does the inspector-specific stuff
  14. @interface Ranker (AttributesInspector)
  15.  
  16. - (const char *)getInspectorClassName;
  17. - finishUnarchiving;
  18.  
  19. @end
  20.  
  21. // An inspector for the Ranker class.
  22. @interface RankerInspector:IBInspector
  23. {
  24.     id    rankSwitch;
  25. }
  26.  
  27.  
  28. @end
  29.