blob: e39589fb805a7991c818315e6a2eb7c0f5b4120e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef DEF_PIPEVT_CLASS_H
#define DEF_PIPEVT_CLASS_H
#include <VTManager/VirtualTerminal.proto.h>
class PipeVT : public VirtualTerminal {
protected:
u32int m_col;
public:
PipeVT();
bool isBoxed() { return false; }
void handleEscape(mvt_esc_cmd_t cmd);
void put(WChar c, bool updatecsr = true);
};
#endif
|