blob: 7746a7b36367d78aa0c4fb3b09861aa825a5d8a7 (
plain) (
tree)
|
|
#ifndef DEF_VGATEXTOUTPUT_CLASS_H
#define DEF_VGATEXTOUTPUT_CLASS_H
#include <Devices/Display/Display.proto.h>
class VGATextOutput : public Display {
public:
String getClass();
String getName();
u16int textCols();
u16int textRows();
void putChar(u16int line, u16int col, wchar c, u8int color);
void moveCursor(u16int line, u16int col);
void clear();
};
#endif
|