ProjectManager  0.2
Document.h
1 /* All Rights Reserved */
2 
3 #ifndef _DOCUMENT_H_
4 #define _DOCUMENT_H_
5 
6 #import <AppKit/AppKit.h>
7 
8 @interface Document : NSDocument
9 
10 - (BOOL) loadDataRepresentation: (NSData *) data ofType: (NSString *) aType;
11 - (NSData *) dataRepresentationOfType: (NSString *) aType;
12 
13 - (NSString *) windowNibName;
14 
15 @end
16 
17 #endif // _DOCUMENT_H_
Document
Definition: Document.h:8