28 lines
466 B
C++
28 lines
466 B
C++
/*
|
|
* Solenoid.cpp
|
|
*
|
|
* Created on: Aug 2, 2018
|
|
* Author: rhetenor
|
|
*/
|
|
|
|
#include "Solenoid.h"
|
|
|
|
namespace FlippR_Driver
|
|
{
|
|
namespace output {
|
|
|
|
Solenoid::Solenoid(std::shared_ptr<utility::IOutputGPIOInterface> 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 */
|
|
}
|