compilable version

This commit is contained in:
Neeflix
2018-08-08 12:22:11 +02:00
parent 67e70405e0
commit 494021d910
6 changed files with 104 additions and 14 deletions

View File

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