22 lines
438 B
C++
22 lines
438 B
C++
//
|
|
// Created by rhetenor on 4/15/19.
|
|
//
|
|
|
|
#include <Poco/Net/HTTPServerParams.h>
|
|
|
|
#include "OutputHTTPServer.h"
|
|
#include "OutputRequestHandlerFactory.h"
|
|
|
|
namespace flippR_driver
|
|
{
|
|
namespace networking
|
|
{
|
|
using namespace Poco::Net;
|
|
|
|
OutputHTTPServer::OutputHTTPServer(std::shared_ptr<output::OutputDriver> output_driver, Socket &socket) :
|
|
HTTPServer(new OutputRequestHandlerFactory(output_driver), socket, new HTTPServerParams())
|
|
{}
|
|
|
|
}
|
|
}
|