mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2024-12-22 07:30:40 +00:00
38 lines
472 B
C
38 lines
472 B
C
|
//
|
||
|
// VT100.h
|
||
|
// 2Term
|
||
|
//
|
||
|
// Created by Kelvin Sherlock on 7/14/2010.
|
||
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
#import "Emulator.h"
|
||
|
|
||
|
#include "iGeometry.h"
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
#include <vector>
|
||
|
#endif
|
||
|
|
||
|
@interface VT100 : NSObject <Emulator> {
|
||
|
|
||
|
unsigned _state;
|
||
|
|
||
|
BOOL _keyMode;
|
||
|
BOOL _vt52Mode;
|
||
|
BOOL _graphics;
|
||
|
|
||
|
iPoint _dca;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
std::vector<int> _parms;
|
||
|
#endif
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
@end
|