Example #1
0
 public LoVariable(LogramPl pl, Topic owner)
 {
     this._pl    = pl;
     this._owner = owner;
     _links      = new List <ILoItem>();
     _value      = null;
     _value_new  = _owner.GetState();
     _pl.EnqueuePr(this);
 }
Example #2
0
 public LoBlock(LogramPl pl, Topic owner)
 {
     this._pl    = pl;
     this._owner = owner;
     _pins       = new List <LoVariable>();
     ManifestChanged();
     foreach (var ch in _owner.children)
     {
         GetPin(ch);
     }
     _pl.EnqueueIn(this);
 }