Files
flippr-code/FlippR-Driver/src/DriverFactory.cpp
2018-11-09 01:16:35 +01:00

15 lines
384 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);
}
}