TwoTerm/GNOConsole.h
Kelvin Sherlock 35918005de ViewPort -> TextPort
git-svn-id: svn://qnap.local/TwoTerm/trunk@1896 5590a31f-7b70-45f8-8c82-aa3a8e5f4507
2010-12-23 20:41:41 +00:00

34 lines
409 B
Objective-C

//
// GNOConsole.h
// 2Term
//
// Created by Kelvin Sherlock on 7/9/2010.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "Emulator.h"
#include "iGeometry.h"
@interface GNOConsole : NSObject <Emulator>
{
unsigned _state;
iPoint _dca;
int _vp[4];
#ifdef __cplusplus
class TextPort;
TextPort *_textPort;
#endif
}
@end