mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2024-10-31 20:09:02 +00:00
24 lines
453 B
Objective-C
24 lines
453 B
Objective-C
//
|
|
// TwoTermAppDelegate.h
|
|
// 2Term
|
|
//
|
|
// Created by Kelvin Sherlock on 6/29/2010.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface TwoTermAppDelegate : NSObject <NSApplicationDelegate> {
|
|
NSWindow *window;
|
|
NSImageView *imageView;
|
|
}
|
|
|
|
@property (assign) IBOutlet NSWindow *window;
|
|
@property (assign) IBOutlet NSImageView *imageView;
|
|
|
|
|
|
|
|
-(void)newTerminal: (NSNotification *)notification;
|
|
|
|
@end
|