mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2024-11-06 15:06:28 +00:00
08d61ce529
git-svn-id: svn://qnap.local/TwoTerm/trunk@1986 5590a31f-7b70-45f8-8c82-aa3a8e5f4507
28 lines
387 B
Objective-C
28 lines
387 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"
|
|
|
|
class OutputChannel;
|
|
class Screen;
|
|
|
|
|
|
|
|
@interface VT05 : NSObject <Emulator> {
|
|
unsigned _state;
|
|
struct iPoint _dca;
|
|
BOOL _upperCase;
|
|
}
|
|
|
|
-(void)tab: (Screen *)screen;
|
|
|
|
@end
|