blob: 9e6d3ba64deafd429ac803f89865de26afae32df (
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/VirtualTerminal.class.h>
namespace VT {
//These should be called only from inside class VirtualTerminal
void map(VirtualTerminal* vt);
void unmap(VirtualTerminal* vt);
void redrawScreen();
}
#endif
|