home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / Source / NGService / Controller.h < prev    next >
Encoding:
Text File  |  1992-08-10  |  685 b   |  31 lines

  1. /*
  2.  *      You may freely copy, distribute and reuse the code
  3.  *      in this example.  Scott Anguish disclaims any warranty of
  4.  *      any kind, expressed or implied, as to its fitness
  5.  *      for any particular use.
  6.  *        Please keep this notice intact
  7.  *      Written by: Scott Anguish  sanguish@digifix.com
  8.  */
  9.  
  10.  
  11. #import <objc/Object.h>
  12. #import <objc/List.h>
  13.  
  14. @interface Controller:Object
  15. {
  16.     id    myScrollView;
  17.     id  OpenPanelObject;
  18.  
  19. }
  20.  
  21. - init;
  22. - appDidInit:sender;
  23. - print:sender;
  24. - replaceText;
  25. - msgOpen:(id)pbid userData:(const char *)udata error:(char **)errmsg;
  26. -(int) appOpenFile:(char *)fileName type:(char *)fileType;
  27. - (BOOL)appAcceptsAnotherFile:sender;
  28. - free;
  29. + new;
  30. @end
  31.