mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-21 20:40:27 +00:00
23 lines
382 B
Objective-C
23 lines
382 B
Objective-C
//
|
|
// Terminal.h
|
|
// UltraGrid GUI
|
|
//
|
|
// Created by Martin Pulec on 11/4/11.
|
|
// Copyright 2011 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface Terminal : NSObject {
|
|
NSFont *font;
|
|
}
|
|
@property (assign) IBOutlet NSWindow *window;
|
|
@property (assign) IBOutlet NSTextView *view;
|
|
|
|
-(void) show;
|
|
-(void) print: (NSString *) msg;
|
|
-(void) clear;
|
|
|
|
@end
|