made compiling

This commit is contained in:
Johannes Wendel
2019-06-14 19:28:09 +02:00
parent 3af4919a11
commit e90c3f6695

View File

@@ -4,7 +4,6 @@
#include "FlippRServer.h" #include "FlippRServer.h"
#include "output/OutputRequestHandlerFactory.h" #include "output/OutputRequestHandlerFactory.h"
#include "input/InputDriverFactory.h"
#include "DriverFactory.h" #include "DriverFactory.h"
#include <Poco/Net/SocketAddress.h> #include <Poco/Net/SocketAddress.h>
@@ -76,7 +75,7 @@ void FlippRServer::initialize(Application &self)
//Todo May restructure with subsystems //Todo May restructure with subsystems
//make this one application and subsystems ServerApplications //make this one application and subsystems ServerApplications
this->initialize_output_driver(); this->initialize_output_driver();
//Todo initialize input server //Todo initialize input server
@@ -101,7 +100,7 @@ void FlippRServer::initialize_output_driver()
} }
//todo should use DriverFactory from input //todo should use DriverFactory from input
this->input_driver = flippR_driver::input::InputDriverFactory::get_InputDriver(input_config_stream, matrix_config_stream); // this->input_driver = flippR_driver::get_InputDriver(input_config_stream, matrix_config_stream);
} }
int FlippRServer::main(const std::vector<std::string>& args) int FlippRServer::main(const std::vector<std::string>& args)