added tests

This commit is contained in:
Neeflix
2018-06-28 00:25:26 +02:00
parent 66dd3f2b42
commit 252dbeca47
61 changed files with 4867 additions and 14 deletions

View File

@@ -19,7 +19,7 @@ namespace Input
class Event
{
public:
Event(char address, char priority, std::string name);
Event(char address, int priority, std::string name);
bool operator==(const Event& other);
friend bool operator<(const Event& left, const Event& right)
{
@@ -30,7 +30,7 @@ private:
char address;
public:
char priority;
int priority;
std::string name;