/* * Solenoid.cpp * * Created on: Aug 2, 2018 * Author: rhetenor */ #include "Solenoid.h" namespace FlippR_Driver { namespace output { Solenoid::Solenoid(std::shared_ptr output_gpio_interface, int address, std::string name) : CabinetItem(output_gpio_interface, address, name) { // TODO Auto-generated constructor stub } Solenoid::~Solenoid() { // TODO Auto-generated destructor stub } } /* namespace output */ }