mirror of
https://github.com/textmate/textmate.git
synced 2026-01-22 13:17:55 -05:00
15 lines
395 B
Objective-C
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
|