2010-07-08 22:26:58 +00:00
|
|
|
//
|
|
|
|
// 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;
|
2010-10-05 18:56:45 +00:00
|
|
|
|
|
|
|
|
2010-10-06 00:39:09 +00:00
|
|
|
|
2010-10-05 18:56:45 +00:00
|
|
|
-(void)newTerminal: (NSNotification *)notification;
|
|
|
|
|
2010-07-08 22:26:58 +00:00
|
|
|
@end
|