mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2025-01-03 07:29:28 +00:00
25 lines
343 B
Objective-C
25 lines
343 B
Objective-C
//
|
|
// TermWindowController.h
|
|
// 2Term
|
|
//
|
|
// Created by Kelvin Sherlock on 7/2/2010.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@class EmulatorView;
|
|
|
|
@interface TermWindowController : NSWindowController {
|
|
|
|
IBOutlet EmulatorView *_emulatorView;
|
|
|
|
int _child;
|
|
|
|
}
|
|
|
|
-(void)initPTY;
|
|
|
|
@end
|