1
0

OO redesign
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Jens Christian True
2019-09-04 15:28:38 +02:00
parent 96fd2967b3
commit 3815d2ed5f
7 changed files with 140 additions and 42 deletions

View File

@@ -0,0 +1,16 @@
#ifndef COMMANDHANDLER_H
#define COMMANDHANDLER_H
#include "DisplayProxy.h"
class CommandHandler
{
public:
CommandHandler(DisplayProxy *display);
bool parse(char *cmd);
private:
void debugWrite(int x, int y, const char *text);
DisplayProxy *display;
};
#endif