home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / MiniExamples / ScrollingText / ScrollingText.h < prev    next >
Text File  |  1991-04-21  |  406b  |  21 lines

  1. /* ScrollingText.h
  2. *  Purpose: A subclass of Application and the class which runs the show.
  3. *
  4. *  You may freely copy, distribute, and reuse the code in this example.
  5. *  NeXT disclaims any warranty of any kind, expressed or  implied, as to its fitness
  6. *  for any particular use.
  7. *
  8. */
  9.  
  10. #import <appkit/Application.h>
  11.  
  12. @interface ScrollingText:Application
  13. {
  14.     id zoomPopUpList;
  15. }
  16.  
  17. - newDocument:sender;
  18.  
  19. @end
  20.  
  21.