home *** CD-ROM | disk | FTP | other *** search
-
- #import <AppKit/AppKit.h>
-
- @interface Document: NSObject
- {
- IBOutlet NSWindow *window;
- NSString *filePath;
- }
-
- + (NSSet *) readableFileTypes;
-
- - initWithContentsOfFile:(NSString *)file;
- - init;
-
- - (NSString *) filePath;
- - (void) setFilePath:(NSString *)path;
-
- - (void)show;
- - (void)windowWillClose:(NSNotification *)note;
- @end
-