working on big refactor

This commit is contained in:
Jonas Zeunert
2018-12-14 01:09:54 +01:00
parent f3100004b9
commit 2aee0f4f9d
67 changed files with 914 additions and 619 deletions

View File

@@ -7,7 +7,7 @@
#include <signal.h>
#include "DriverFactory.h"
#include "input/IInputDriver.h"
#include "input/InputDriver.h"
#include "PrintHandler.h"
@@ -45,7 +45,7 @@ int main (int argc, char *argv[])
exit(2);
}
std::shared_ptr<input::IInputDriver> driver = flippR_driver::get_InputDriver(input_config, matrix_config);
std::shared_ptr<input::InputDriver> driver = flippR_driver::get_InputDriver(input_config, matrix_config);
PrintHandler* print_handler = new PrintHandler(driver);