#ifndef DEF_PIPEVT_CLASS_H #define DEF_PIPEVT_CLASS_H #include 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