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
|