finished detector

This commit is contained in:
Jonas Zeunert
2018-04-27 00:50:54 +02:00
parent a181f12d20
commit 65bf3e5958
77 changed files with 10430 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#include <vector>
#include "InputEvent.h"
#include "Detector.h"
#include <iostream>
int main()
{
Input::Detector(std::set<Input::InputEvent*>());
std::printf("hallo");
return 0;
}