19 lines
380 B
C++
19 lines
380 B
C++
//
|
|
// Created by rhetenor on 13.09.18.
|
|
//
|
|
|
|
#ifndef FLIPPR_DRIVER_DRIVERFACTORY_H
|
|
#define FLIPPR_DRIVER_DRIVERFACTORY_H
|
|
|
|
#include <fstream>
|
|
#include <memory>
|
|
|
|
#include "IInputDriver.h"
|
|
|
|
namespace FlippR_Driver
|
|
{
|
|
std::shared_ptr<Input::IInputDriver> get_InputDriver(std::istream& input_config_stream, std::istream& matrix_config_stream);
|
|
}
|
|
|
|
#endif //FLIPPR_DRIVER_DRIVERFACTORY_H
|