Exemplo n.º 1
0
 public OperatorOutput(ref IVertex vertex, int thisId)
 {
     _operator = (OperatorBase)vertex;
     _thisId   = thisId;
 }
Exemplo n.º 2
0
 public OperatorInput(ref IVertex vertex, int thisId, bool isSecondaryInput = false)
 {
     _operator         = (OperatorBase)vertex;
     _thisId           = thisId;
     _isSecondaryInput = isSecondaryInput;
 }