implemented cli

This commit is contained in:
Jonas Zeunert
2018-09-14 00:12:56 +02:00
parent 18ed362486
commit 05f4242d6d
5 changed files with 51 additions and 5 deletions

View File

@@ -0,0 +1,17 @@
//
// Created by rhetenor on 13.09.18.
//
#ifndef FLIPPR_DRIVER_PRINTHANDLER_H
#define FLIPPR_DRIVER_PRINTHANDLER_H
#include "IEventHandler.h"
class PrintHandler : public IEventHandler
{
public:
virtual void handle(FlippR_Driver::Input::Event& event);
};
#endif //FLIPPR_DRIVER_PRINTHANDLER_H