11 lines
121 B
C++
11 lines
121 B
C++
#include "gate.h"
|
|
|
|
Gate::Gate()
|
|
{
|
|
}
|
|
|
|
void Gate::setOut(int newValue, int setTime)
|
|
{
|
|
out->setValue(newValue, setTime);
|
|
}
|