home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / Rhapsody / Graphics / Morph-2.0a / Document.h < prev    next >
Encoding:
Text File  |  1998-01-04  |  334 b   |  21 lines

  1.  
  2. #import <AppKit/AppKit.h>
  3.  
  4. @interface Document: NSObject
  5. {
  6.     IBOutlet NSWindow *window;
  7.     NSString *filePath;
  8. }
  9.  
  10. + (NSSet *) readableFileTypes;
  11.  
  12. - initWithContentsOfFile:(NSString *)file;
  13. - init;
  14.  
  15. - (NSString *) filePath;
  16. - (void) setFilePath:(NSString *)path;
  17.  
  18. - (void)show;
  19. - (void)windowWillClose:(NSNotification *)note;
  20. @end
  21.