home *** CD-ROM | disk | FTP | other *** search
- /*
- * Author: Greg Burd, Mr. Average Developer
- * (I would like to be a member of the NeXT Developer Support Team.)
- *
- * You may freely copy, distribute and reuse the code in this example.
- * I disclaim any warranty of any kind, expressed or implied, as to
- * its fitness for any particular use.
- */
-
- #import <objc/Object.h>
-
- @interface InspectorController:Object
- {
- id inspectorPanel;
- id swapView;
- id popUpCover;
- id infoPanel;
- id firstInspectorPanel;
- id secondInspectorPanel;
- id thirdInspectorPanel;
- id fourthInspectorPanel;
- }
- - init;
- - inspectName:(char *)str;
- - popUpAction:sender;
- - showInspector;
- - free;
-
- // delegate method for swapView
- - whatPanel;
-
-
- @end
-