home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / SoundAndMusic / Hyperupic / Hyperupic.app / HyperupicApp.h < prev    next >
Text File  |  1992-08-10  |  385b  |  18 lines

  1. #import <appkit/Application.h>
  2. #import <sys/param.h>  //for MAXPATHLEN
  3.  
  4. @interface HyperupicApp:Application
  5. {
  6.     id helpObject;            /* Object that handles help requests */
  7.     id prefPanel;            /* The Preferences panel */
  8.     char appDirectory[MAXPATHLEN];    /* The path to the application */
  9. }
  10.  
  11. + new;
  12. - (const char *)appDirectory;
  13.  
  14. /* TARGET/ACTION METHODS */
  15. - preferences:sender;
  16.  
  17. @end
  18.