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

  1. // FileImage.h
  2. // By Jayson Adams
  3. // NeXT Strategic Developer Engineer
  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
  7. // fitness for any particular use.
  8.  
  9. #import "GraphicImage.h"
  10.  
  11. @interface FileImage:GraphicImage
  12. {
  13.     char    *fileName;
  14. }
  15.  
  16. - initForImage:image fileName:(const char *)name;
  17. - readRichText:(NXStream *)stream forView:view;
  18. - performDoubleClickAction;
  19.  
  20. @end
  21.