TwoTerm/Emulators/VT52.h
Kelvin Sherlock bbd0af01dc update vt50x terminals.
git-svn-id: svn://qnap.local/TwoTerm/trunk@3180 5590a31f-7b70-45f8-8c82-aa3a8e5f4507
2017-02-25 18:29:14 +00:00

39 lines
511 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"
#include "Screen.h"
@interface VT5x : NSObject <Emulator> {
unsigned _model;
unsigned cs;
BOOL _altKeyPad;
BOOL _graphics;
BOOL _escape;
context _context;
}
@end
@interface VT52 : VT5x
@end
@interface VT50H : VT5x
@end
@interface VT50 : VT5x
@end
@interface VT55 : VT5x
@end