home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / Inspectors / SwapView_2.0r / InspectorController.h < prev    next >
Encoding:
Text File  |  1992-05-18  |  680 b   |  34 lines

  1. /*
  2.  * Author: Greg Burd, Mr. Average Developer
  3.  *    (I would like to be a member of the NeXT Developer Support Team.)
  4.  *
  5.  * You may freely copy, distribute and reuse the code in this example.  
  6.  * I disclaim any warranty of any kind, expressed or implied, as to 
  7.  * its fitness for any particular use.
  8.  */
  9.  
  10. #import <objc/Object.h>
  11.  
  12. @interface InspectorController:Object
  13. {
  14.     id    inspectorPanel;
  15.     id    swapView;
  16.     id    popUpCover;
  17.     id    infoPanel;
  18.     id    firstInspectorPanel;
  19.     id    secondInspectorPanel;
  20.     id    thirdInspectorPanel;
  21.     id    fourthInspectorPanel;
  22. }
  23. - init;
  24. - inspectName:(char *)str;
  25. - popUpAction:sender;
  26. - showInspector;
  27. - free;
  28.  
  29. // delegate method for swapView
  30. - whatPanel;
  31.  
  32.  
  33. @end
  34.