summaryrefslogtreecommitdiff
path: root/Source/Kernel/VTManager/VT.ns.h
blob: 9390636621c9179b9218f0e4cdb70e57762952e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef DEF_VT_NS_H
#define DEF_VT_NS_H

#include <common.h>
#include <VTManager/SimpleVT.class.h>

namespace VT {
	//These should be called only from inside class VirtualTerminal
	void map(SimpleVT* vt);
	void unmap(SimpleVT* vt);
	void redrawScreen();
}

#endif