mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2024-12-22 22:29:51 +00:00
27 lines
328 B
C
27 lines
328 B
C
|
//
|
||
|
// PTSE.h
|
||
|
// 2Term
|
||
|
//
|
||
|
// Created by Kelvin Sherlock on 7/9/2010.
|
||
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
#import "Emulator.h"
|
||
|
#include "iGeometry.h"
|
||
|
|
||
|
|
||
|
@interface PTSE : NSObject <Emulator>
|
||
|
{
|
||
|
unsigned _state;
|
||
|
|
||
|
iPoint _dca;
|
||
|
uint8_t _repeatChar;
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
@end
|