home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / MiniExamples / PaginationLab / Worker.h < prev    next >
Text File  |  1991-05-18  |  486b  |  22 lines

  1. /* BigView.m
  2.  * Purpose: This class functions as NXApp's delegate, initializing stuff
  3.  * before PaginationLab runs.  It also handles requests to run the
  4.  * pageLayout panel.
  5.  *
  6.  * You may freely copy, distribute, and reuse the code in this example.
  7.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  8.  * fitness for any particular use.
  9.  */
  10.  
  11. #import <objc/Object.h>
  12.  
  13. @interface Worker:Object
  14. {
  15.     id myBigView;
  16.     id plAccessory;
  17. }
  18.  
  19. - runPageLayout:sender;
  20.  
  21. @end
  22.