home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Examples / AppKit / Yap / YapDocument.h < prev    next >
Text File  |  1996-01-19  |  235b  |  15 lines

  1. #import <AppKit/AppKit.h>
  2. #import "Document.h"
  3.  
  4. @class YapOutput;
  5.  
  6. @interface YapDocument : Document {
  7.     YapOutput *outputView;
  8. }
  9.  
  10. - (void)setOutputView:(YapOutput *)view;
  11. - (YapOutput *)outputView;
  12. - (void)execute:(id)sender;
  13.  
  14. @end
  15.