changed structure

This commit is contained in:
Johannes Wendel
2019-04-24 19:22:55 +02:00
parent 8785c701be
commit 218cb65dd4
54 changed files with 1348 additions and 5278 deletions

View File

@@ -0,0 +1,32 @@
//
// Created by rhetenor on 27.11.18.
//
#ifndef FLIPPR_DRIVER_INPUTSOCKETHANDLER_H
#define FLIPPR_DRIVER_INPUTSOCKETHANDLER_H
#include "input/EventHandler.h"
#include <Poco/JSON/JSON.h>
#include <string>
namespace flippR_driver
{
namespace utility
{
class InputSocketHandler : public input::EventHandler
{
public:
InputSocketHandler();
void handle(input::Event &event) override;
private:
std::string serialize_event(input::Event &event);
};
}
}
#endif //FLIPPR_DRIVER_INPUTSOCKETHANDLER_H