remove unneeded constructor

This commit is contained in:
Joel Beckmeyer 2017-04-23 20:39:39 -04:00
parent 1431660328
commit 2a697fecbf

6
src/Gate.cpp Normal file
View File

@ -0,0 +1,6 @@
#include "Gate.h"
void Gate::setOut(int newValue, int setTime)
{
out->setValue(newValue, setTime);
}