tagging release
[dasher.git] / Src / MacOSX / TextDocument.h
blob2d716c265c60f5300bbb5134608fddd65fd6c785
1 //
2 // MyDocument.h
3 // MD
4 //
5 // Created by Doug Dickinson on Sun Jun 01 2003.
6 // Copyright (c) 2003 Doug Dickinson (dasher@DressTheMonkey.plus.com). All rights reserved.
7 //
9 #import <Cocoa/Cocoa.h>
11 @ interface TextDocument:NSDocument {
12 IBOutlet NSTextView *textUI;
14 NSData *_fileContents;
17 -(NSData *) fileContents;
18 -(void)setFileContents:(NSData *) newFileContents;
20 -(NSTextView *) textUI;
22 @end