Added a constructor for ModelSplitterParams; added a TODO
[Mograsim.git] / plugins / net.mograsim.logic.model / src / net / mograsim / logic / model / model / components / atomic / ModelSplitter.java
index 5c112b1..035e359 100644 (file)
@@ -148,6 +148,16 @@ public class ModelSplitter extends ModelComponent
        {
                public int logicWidth;
                public Orientation orientation;
+
+               public SplitterParams()
+               {
+               }
+
+               public SplitterParams(int logicWidth, Orientation orientation)
+               {
+                       this.logicWidth = logicWidth;
+                       this.orientation = orientation;
+               }
        }
 
        static