home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer) / NeXT_Developer-3.3.iso / NextDeveloper / Examples / AppKit / CalculatorLab++ / InfoManager.h < prev    next >
Encoding:
Text File  |  1990-10-29  |  460 b   |  25 lines

  1. //
  2. //    A simple controller to create panel objects from a nib when needed
  3. //    mem
  4. //
  5. //    You may freely copy, distribute and reuse the code in this example.
  6. //    NeXT disclaims any warranty of any kind, expressed or implied, as to
  7. //    its fitness for any particular use.
  8. //
  9. //    Created 9-3-90
  10. //
  11.  
  12. #import <objc/Object.h>
  13.  
  14. @interface InfoManager:Object
  15. {
  16.     id infoPanel;
  17.     id helpPanel;
  18. }
  19.  
  20. - init;
  21. - orderInfoPanelFront:sender;
  22. - orderHelpPanelFront:sender;
  23.  
  24. @end
  25.