home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / EODEV.Z / EOMInspectorController.h < prev    next >
Encoding:
Text File  |  1996-09-09  |  532 b   |  22 lines

  1. /*    InspectorController.h
  2.     Copyright 1993, NeXT Software, Inc.
  3.     All rights reserved.
  4. */
  5.  
  6. #import <EOInterface/EOInterface.h>
  7. @class EOMInspector;
  8.  
  9. // Inspector observes EOMSelectionChangedNotification notifications to refresh its display
  10.  
  11. @interface EOMInspectorController:NSObject {
  12.     NSWindow        *window;
  13.     NSScrollView    *scrollView;
  14.     NSMapTable          *inspSpecsConfigToBest;
  15. }
  16.  
  17. + (void)showInspector;
  18. + (EOMInspectorController *)sharedInstance;
  19.     // returns shared instance of inspector object for receieving class
  20.  
  21. @end
  22.