home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / Chemistry / Elements_1.0 / Elements.app / sources / ElementApp.h < prev    next >
Text File  |  1992-02-08  |  282b  |  18 lines

  1.  
  2. #import <appkit/Application.h>
  3. #import <sys/param.h>  //for MAXPATHLEN
  4.  
  5. @interface ElementApp:Application
  6. {
  7.     char appDirectory[MAXPATHLEN];    /* The path to the application */
  8.     id tableWin;
  9.     id theBoss;
  10. }
  11.  
  12. + new;
  13. - (const char *)appDirectory;
  14. - sendEvent:(NXEvent *)event;
  15.  
  16.  
  17. @end
  18.