terminal/src/Terminal.h

24 lines
380 B
C
Raw Normal View History

2019-12-12 11:59:07 +01:00
//
// Created by yukun on 29.11.19.
//
#ifndef TERMINAL_TERMINAL_H
#define TERMINAL_TERMINAL_H
#include "vkvm.hpp"
class Terminal {
public:
std::string getString();
void setString(char c);
void subString();
void shiftpressed();
void shiftup();
int getstatus();
private:
std::string s="";
int status = 0;
};
#endif //TERMINAL_TERMINAL_H