home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / Programming / Source / StereoScope-3.2 / SterOptikonApp.h < prev    next >
Encoding:
Text File  |  1992-03-26  |  378 b   |  17 lines

  1.  
  2. #import <appkit/Application.h>
  3. #import <sys/param.h>  //for MAXPATHLEN
  4.  
  5. @interface SterOptikonApp:Application
  6. {
  7.     char appDirectory[MAXPATHLEN];    /* The path to the application */
  8.     char openFileName[MAXPATHLEN];
  9. }
  10.  
  11. + new;
  12. - (const char *)appDirectory;
  13. - (BOOL)appAcceptsAnotherFile:sender;
  14. - (int)openFile:(const char *)filename ok:(int *)flag;
  15. - (char *)getInitialFile;
  16. @end
  17.