mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2024-12-22 07:30:40 +00:00
28 lines
390 B
Objective-C
28 lines
390 B
Objective-C
//
|
|
// VT52.h
|
|
// 2Term
|
|
//
|
|
// Created by Kelvin Sherlock on 7/7/2010.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "Emulator.h"
|
|
|
|
#include "iGeometry.h"
|
|
|
|
|
|
@interface VT52 : NSObject <Emulator> {
|
|
|
|
unsigned _model;
|
|
|
|
unsigned _state;
|
|
iPoint _dca;
|
|
BOOL _altKeyPad;
|
|
BOOL _graphics;
|
|
}
|
|
|
|
-(void)tab: (Screen *)screen;
|
|
|
|
@end
|