radec/src/gate.cpp
2017-04-23 19:53:37 -04:00

11 lines
121 B
C++

#include "gate.h"
Gate::Gate()
{
}
void Gate::setOut(int newValue, int setTime)
{
out->setValue(newValue, setTime);
}