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