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

  1. /*
  2.     NSEPSImageRep.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 NSEPSImageRep : NSImageRep {
  11.     NSPoint _bBoxOrigin;
  12.     NSData *_epsData;
  13.     unsigned int _reserved;
  14. }
  15.  
  16. + (id)imageRepWithData:(NSData *)epsData;    /* Convenience of initWithData: */
  17. - (id)initWithData:(NSData *)epsData;
  18.  
  19. - (void)prepareGState;
  20.  
  21. - (NSData *)EPSRepresentation;
  22.  
  23. - (NSRect)boundingBox;
  24.  
  25. @end
  26.  
  27.