home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2 / Openstep-4.2-Intel-Developer.iso / NextLibrary / Frameworks / AppKit.framework / Versions / B / Headers / NSCustomImageRep.h < prev    next >
Text File  |  1996-10-17  |  365b  |  22 lines

  1. /*
  2.     NSCustomImageRep.h
  3.     Application Kit
  4.     Copyright (c) 1994-1996, NeXT Software, Inc.
  5.     All rights reserved.
  6. */
  7.  
  8. #import <AppKit/NSImageRep.h>
  9.  
  10. @interface NSCustomImageRep : NSImageRep {
  11.     SEL _drawMethod;
  12.     id _drawObject;
  13.     unsigned int _reserved;
  14. }
  15.  
  16. - (id)initWithDrawSelector:(SEL)aMethod delegate:(id)anObject;
  17. - (SEL)drawSelector;
  18. - (id)delegate;
  19.  
  20. @end
  21.  
  22.