mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2024-12-22 07:30:40 +00:00
46ebda708c
git-svn-id: svn://qnap.local/TwoTerm/trunk@2024 5590a31f-7b70-45f8-8c82-aa3a8e5f4507
34 lines
426 B
Objective-C
34 lines
426 B
Objective-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"
|
|
|
|
#ifdef __cplusplus
|
|
#include "Screen.h"
|
|
#endif
|
|
|
|
@interface PTSE : NSObject <Emulator>
|
|
{
|
|
unsigned _state;
|
|
|
|
iPoint _dca;
|
|
uint8_t _repeatChar;
|
|
|
|
#ifdef __cplusplus
|
|
TextPort _textPort;
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|