restored OUtputPinController
This commit is contained in:
21
FlippR-Driver/networking/output/OutputHTTPServer.cpp
Normal file
21
FlippR-Driver/networking/output/OutputHTTPServer.cpp
Normal file
@@ -0,0 +1,21 @@
|
||||
//
|
||||
// Created by rhetenor on 4/15/19.
|
||||
//
|
||||
|
||||
#include <Poco/Net/HTTPServerParams.h>
|
||||
|
||||
#include "OutputHTTPServer.h"
|
||||
#include "OutputRequestHandlerFactory.h"
|
||||
|
||||
namespace flippR_driver
|
||||
{
|
||||
namespace utility
|
||||
{
|
||||
using namespace Poco::Net;
|
||||
|
||||
OutputHTTPServer::OutputHTTPServer(std::shared_ptr<output::OutputDriver> output_driver, Socket &socket) :
|
||||
HTTPServer(new OutputRequestHandlerFactory(output_driver), socket, new HTTPServerParams())
|
||||
{}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user