Files
flippr-code/FlippR-Driver/src/input/ErrorEvent.hpp
2018-11-20 22:52:10 +01:00

26 lines
319 B
C++

/*
* ErrorEvent.h
*
* Created on: Aug 8, 2018
* Author: johannes
*/
#ifndef SRC_INPUT_ERROREVENT_HPP_
#define SRC_INPUT_ERROREVENT_HPP_
#include "input/Event.h"
namespace flippR_driver {
namespace input {
class ErrorEvent : public Event
{
public:
ErrorEvent() : Event(0, 0, "ERROR") {}
};
}
}
#endif