Files
flippr-code/FlippR-Driver/cli/OutputInterpreter.h
Johannes Wendel e7148eec60 fuuuuuuuu
2019-07-16 22:12:46 +02:00

24 lines
541 B
C++

//
// Created by rhetenor on 5/5/19.
//
#ifndef FLIPPR_DRIVER_OUTPUTINTERPRETER_H
#define FLIPPR_DRIVER_OUTPUTINTERPRETER_H
#include "DriverFactory.h"
class OutputInterpreter
{
public:
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);
void startInterpreter();
private:
std::shared_ptr<flippR_driver::output::OutputDriver> output_driver;
};
#endif //FLIPPR_DRIVER_OUTPUTINTERPRETER_H