implemented cli

This commit is contained in:
Jonas Zeunert
2018-09-14 00:12:56 +02:00
parent 18ed362486
commit 05f4242d6d
5 changed files with 51 additions and 5 deletions

View File

@@ -26,12 +26,11 @@ public:
return left.priority < right.priority;
}
private:
char address;
public:
int priority;
std::string name;
char address;
int priority;
};
bool operator==(const Event& left, const Event& right);