home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / Examples / InfoWow-0.00-MIHS / src / Controller.h < prev    next >
Encoding:
Text File  |  1994-03-21  |  393 b   |  18 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. @interface Controller:Object
  5. {
  6.     id infoPanel;
  7.     id infoPanel2;
  8.     id niftyView;
  9. }
  10.  
  11. - infoPanel;    // return the infoPanel, load it if needed.
  12. - info:sender;    // Info... menu item sends this message.  Brings up the panel.
  13.  
  14. - infoPanel2;    // return the infoPanel, load it if needed.
  15. - info2:sender;    // Info... menu item sends this message.  Brings up the panel.
  16.  
  17. @end
  18.