Files
flippr-code/FlippR-Driver/src/DriverFactory.cpp
2018-09-13 23:54:48 +02:00

14 lines
383 B
C++

//
// Created by rhetenor on 13.09.18.
//
#include "DriverFactory.h"
#include "input/InputDriverFactory.h"
namespace FlippR_Driver
{
std::shared_ptr<Input::IInputDriver> get_InputDriver(std::istream& input_config_stream, std::istream& matrix_config_stream)
{
return FlippR_Driver::Input::InputDriverFactory::get_InputDriver(input_config_stream, matrix_config_stream);
}
}