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