home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / OPENSTEP / Utilities / Comics-1.0-MIS / AboutBox.subproj / AboutBoxController.h next >
Encoding:
Text File  |  1997-09-25  |  879 b   |  33 lines

  1. #import <AppKit/AppKit.h>
  2.  
  3. /*
  4.  File:       AboutBoxController.h
  5.  
  6.  Contains:   Header file for the Controller of the "About Comics" window
  7.  
  8.  Written by: Eric Simenel
  9.  
  10.  Created:    May 1997
  11.  
  12.  Copyright:  (c)1997 by Apple Computer, Inc., all rights reserved.
  13.  
  14.  Change History (most recent first):
  15.  
  16.  You may incorporate this sample code into your applications without
  17.  restriction, though the sample code has been provided "AS IS" and the
  18.  responsibility for its operation is 100% yours.  However, what you are
  19.  not permitted to do is to redistribute the source as "DSC Sample Code"
  20.  after having made changes. If you're going to re-distribute the source,
  21.  we require that you make it clear in the source that the code was
  22.  descended from Apple Sample Code, but that you've made changes.
  23. */
  24.  
  25. @interface AboutBoxController : NSObject
  26. {
  27.     id panel;
  28. }
  29.  
  30. - (void)show:(id)sender;
  31.  
  32. @end
  33.