Files
UltraGrid/gui/UltraGrid GUI/Terminal.h
Martin Pulec bb5b84d9ea Restructuralize directory structure
* content of ultragrid/ subdirector moved to root
2012-07-02 18:24:25 +02:00

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