2020-08-29 22:45:25 +00:00
|
|
|
//
|
|
|
|
// LogWindowController.h
|
2020-08-30 03:24:49 +00:00
|
|
|
// Ample
|
2020-08-29 22:45:25 +00:00
|
|
|
//
|
|
|
|
// Created by Kelvin Sherlock on 8/29/2020.
|
|
|
|
// Copyright © 2020 Kelvin Sherlock. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
@interface LogWindowController : NSWindowController <NSWindowDelegate>
|
|
|
|
|
2021-06-19 01:57:46 +00:00
|
|
|
#if 0
|
2020-08-29 22:45:25 +00:00
|
|
|
+(id)controllerForTask: (NSTask *)task;
|
2021-06-19 01:57:46 +00:00
|
|
|
+(id)controllerForTask: (NSTask *)task close: (BOOL)close;
|
|
|
|
#endif
|
|
|
|
|
2020-09-30 23:15:37 +00:00
|
|
|
+(id)controllerForArgs: (NSArray *)args;
|
2021-06-19 01:57:46 +00:00
|
|
|
+(id)controllerForArgs: (NSArray *)args close: (BOOL)close;
|
2020-08-29 22:45:25 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|