home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / MiscKit1.2.6 / Documentation / SwapKitTutorial.rtfd / MasterInspector.h < prev    next >
Encoding:
Text File  |  1994-03-25  |  997 b   |  34 lines

  1. /* MasterInspector.h                 
  2.  *
  3.  * This is the BeakerBoys Master Inspector. Here all the other Inspectors
  4.  * are created or have to register themselves.
  5.  *
  6.  * Usage: Well it's not a reuseable class. Don't use it...
  7.  *
  8.  * Notes: ...but it's aexample of how to make your onw inspector stuff with
  9.  *          MiscInspectorKit. Just create you own default inspectors. Remember,
  10.  *          that the order is significant. So if you have a very general inspctr.
  11.  *          (like WM has for every file) be sure to add it first rigth after you 
  12.  *          did [super addDefaltInsp] (to get your NoAppl, NoSel, MultiSel stuff)
  13.  *
  14.  * Written by:         Thomas Engel
  15.  * Created:            20.12.1993 (Copyleft)
  16.  * Last modified:     08.02.1994
  17.  */
  18.  
  19. #import <misckit/MiscInspectorManager.h>
  20.  
  21. @interface MasterInspector:MiscInspectorManager
  22.  
  23. - addDefaultInspectors;
  24.  
  25. @end
  26.  
  27. /*
  28.  * History: 08.02.94 Changed it to work with the MiscInspectorStuff
  29.  *
  30.  *            20.12.93 First code seperated from the old InspectorManager
  31.  *
  32.  *
  33.  * Bugs: unknown to me :-)
  34.  */