17 lines
529 B
C++
17 lines
529 B
C++
//
|
|
// Created by rhetenor on 5/5/19.
|
|
//
|
|
|
|
#include "OutputInterpreter.h"
|
|
|
|
#include <fstream>
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
OutputInterpreter::OutputInterpreter(std::string output_lamp_config_file, std::string output_solenoid_config_file,
|
|
std::string output_sound_config_file, std::string output_display_config_file)
|
|
{
|
|
output_driver = flippR_driver::get_OutputDriver(output_lamp_config_file, output_solenoid_config_file, output_sound_config_file, output_display_config_file);
|
|
}
|