VocalEasel/Sources/VLLogWindow.h

21 lines
335 B
C
Raw Normal View History

2006-10-26 08:21:50 +00:00
//
2007-04-27 06:41:34 +00:00
// File: VLLogWindow.h - Manage output log window
2006-10-26 08:21:50 +00:00
//
2007-04-27 06:41:34 +00:00
// Author(s):
//
// (MN) Matthias Neeracher
//
// Copyright © 2005-2007 Matthias Neeracher
2006-10-26 08:21:50 +00:00
//
#import <Cocoa/Cocoa.h>
@interface VLLogWindow : NSWindowController {
IBOutlet id log;
NSMutableString * logText;
}
- (void) logFromFileHandle:(NSFileHandle *) h;
@end