// // VT100.h // 2Term // // Created by Kelvin Sherlock on 7/14/2010. // Copyright 2010 __MyCompanyName__. All rights reserved. // #import #import "Emulator.h" #include "iGeometry.h" #ifdef __cplusplus #include #endif @interface VT100 : NSObject { unsigned _state; BOOL _altKeyPad; BOOL _keyMode; BOOL _vt52Mode; BOOL _graphics; iPoint _dca; #ifdef __cplusplus std::vector _parms; #endif } -(void)tab: (Screen *)screen; @end