ProjectManager  0.2
Document.h
00001 /* All Rights Reserved */
00002 
00003 #ifndef _DOCUMENT_H_
00004 #define _DOCUMENT_H_
00005 
00006 #import <AppKit/AppKit.h>
00007 
00008 @interface Document : NSDocument
00009 
00010 - (BOOL) loadDataRepresentation: (NSData *) data ofType: (NSString *) aType;
00011 - (NSData *) dataRepresentationOfType: (NSString *) aType;
00012 
00013 - (NSString *) windowNibName;
00014 
00015 @end
00016 
00017 #endif // _DOCUMENT_H_