summaryrefslogblamecommitdiff
path: root/Source/Kernel/VTManager/PipeVT.class.h
blob: 3c9521ddcff6a7d7c2e3407b9a2adda06f2eeb9e (plain) (tree)
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 setCursorCol(u32int col);
	void put(WChar c, bool updatecsr = true);
};

#endif