blob: 55556b96ec67f91b6b228ccfef71dea5b068e329 (
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 <Core/common.wtf.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
|