mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2024-12-22 07:30:40 +00:00
21 lines
359 B
C
21 lines
359 B
C
|
//
|
||
|
// ChildMonitor.h
|
||
|
// TwoTerm
|
||
|
//
|
||
|
// Created by Kelvin Sherlock on 1/31/2018.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
@class TermWindowController;
|
||
|
@interface ChildMonitor : NSObject {
|
||
|
|
||
|
}
|
||
|
|
||
|
+(id)monitor;
|
||
|
|
||
|
-(void)removeController: (TermWindowController *)controller;
|
||
|
-(void)addController: (TermWindowController *)controller pid: (pid_t)pid fd: (int)fd;
|
||
|
|
||
|
@end
|