ViewLogicModelAdapter now uses NandGate for GUINandGate
[Mograsim.git] / net.mograsim.logic.ui / src / net / mograsim / logic / ui / model / components / GUINandGate.java
1 package net.mograsim.logic.ui.model.components;
2
3 import net.mograsim.logic.ui.model.ViewModelModifiable;
4
5 public class GUINandGate extends SimpleRectangularGUIGate
6 {
7         public GUINandGate(ViewModelModifiable model, int logicWidth)
8         {
9                 super(model, logicWidth, "&", true);
10                 setInputCount(2);// TODO make variable
11         }
12 }