home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / MiniExamples / Grabber / Grabber.h < prev    next >
Text File  |  1993-01-19  |  432b  |  20 lines

  1. /* Grabber.h
  2. *  Purpose:  This class grabs the contents of the screen under the grabberWindow and uses
  3. * it to create a TIFF file.
  4. *
  5. *  You may freely copy, distribute, and reuse the code in this example.
  6. *  NeXT disclaims any warranty of any kind, expressed or  implied, as to its fitness
  7. *  for any particular use.
  8. */
  9.  
  10. #import <appkit/Application.h>
  11.  
  12. @interface Grabber:Application
  13. {
  14.     id    grabberWindow;
  15. }
  16.  
  17. - grab:sender;
  18.  
  19. @end
  20.