01df349bb9c7d094904e080e4a813c57923cef0f
[Mograsim.git] / LogicUI / src / net / mograsim / logic / ui / model / components / GUINotGate.java
1 package net.mograsim.logic.ui.model.components;
2
3 import net.mograsim.logic.ui.model.ViewModel;
4
5 public class GUINotGate extends SimpleRectangularGUIGate
6 {
7         public GUINotGate(ViewModel model, int logicWidth)
8         {
9                 super(model, logicWidth, "1", true);
10                 setInputCount(1);
11         }
12 }