Files
textmate/Frameworks/HTMLOutputWindow/src/HTMLOutputWindow.h
2012-08-28 21:32:47 +02:00

15 lines
395 B
Objective-C

#import <HTMLOutput/HTMLOutput.h>
#import <command/runner.h>
#import <oak/debug.h>
PUBLIC @interface HTMLOutputWindowController : NSObject <NSWindowDelegate>
{
OBJC_WATCH_LEAKS(HTMLOutputWindowController);
NSWindow* window;
OakHTMLOutputView* htmlOutputView;
command::runner_ptr runner;
}
+ (HTMLOutputWindowController*)HTMLOutputWindowWithRunner:(command::runner_ptr const&)aRunner;
@end