// // Created by rhetenor on 4/15/19. // #include #include "OutputHTTPServer.h" #include "OutputRequestHandlerFactory.h" namespace flippR_driver { namespace networking { using namespace Poco::Net; OutputHTTPServer::OutputHTTPServer(std::shared_ptr output_driver, Socket &socket) : HTTPServer(new OutputRequestHandlerFactory(output_driver), socket, new HTTPServerParams()) {} } }