TwoTerm/Emulators/VT05.h
Kelvin Sherlock 102e7a824a update vt05 terminal. since linefeed is only effective on the last line, it's not really usable.
git-svn-id: svn://qnap.local/TwoTerm/trunk@3174 5590a31f-7b70-45f8-8c82-aa3a8e5f4507
2017-02-21 03:20:53 +00:00

26 lines
369 B
Objective-C

//
// VT05.h
// 2Term
//
// Created by Kelvin Sherlock on 7/6/2010.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "Emulator.h"
#include "iGeometry.h"
#include "Screen.h"
@interface VT05 : NSObject <Emulator> {
unsigned _state;
context _context;
BOOL _upperCase;
}
-(void)tab: (Screen *)screen;
@end