24 lines
772 B
C++
24 lines
772 B
C++
//
|
|
// Created by rhetenor on 13.09.18.
|
|
//
|
|
|
|
#ifndef flippR_driver_DRIVERFACTORY_H
|
|
#define flippR_driver_DRIVERFACTORY_H
|
|
|
|
#include <istream>
|
|
#include <memory>
|
|
|
|
#include "input/IInputDriver.h"
|
|
#include "output/IOutputDriver.h"
|
|
|
|
namespace flippR_driver
|
|
{
|
|
std::shared_ptr<input::IInputDriver> get_InputDriver(std::istream& input_config_stream, std::istream& matrix_config_stream);
|
|
std::shared_ptr<output::IOutputDriver> get_OutputDriver(std::istream &output_pin_config,
|
|
std::istream &lamp_config,
|
|
std::istream &solenoid_config,
|
|
std::istream &sound_config);
|
|
}
|
|
|
|
#endif //flippR_driver_DRIVERFACTORY_H
|