diff options
Diffstat (limited to 'Source/Kernel/VTManager/PipeVT.class.h')
-rw-r--r-- | Source/Kernel/VTManager/PipeVT.class.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Source/Kernel/VTManager/PipeVT.class.h b/Source/Kernel/VTManager/PipeVT.class.h new file mode 100644 index 0000000..3c9521d --- /dev/null +++ b/Source/Kernel/VTManager/PipeVT.class.h @@ -0,0 +1,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 setCursorCol(u32int col); + void put(WChar c, bool updatecsr = true); +}; + +#endif |