TwoTerm/Emulators/GNOConsole.h
Kelvin Sherlock e1cf110542 misc updates.
git-svn-id: svn://qnap.local/TwoTerm/trunk@3139 5590a31f-7b70-45f8-8c82-aa3a8e5f4507
2016-09-17 17:39:30 +00:00

34 lines
415 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"
#include "Screen.h"
@interface GNOConsole : NSObject <Emulator>
{
unsigned _state;
TextPort _textPort;
iPoint _dca;
int _vp[4];
Screen::CursorType _cursorType;
}
@end