Exemple #1
0
 public ValueOutput AddValueOutput(string name, Type type, ValueHandlerObject getter, string ID = "")
 {
     QualifyPortNameAndID(ref name, ref ID, outputPorts);
     return((ValueOutput)(outputPorts[ID] = ValueOutput.CreateInstance(type, this, name, ID, getter)));
 }
Exemple #2
0
 abstract public void BindTo(ValueOutput target);
Exemple #3
0
 public ValueOutput <T> AddValueOutput <T>(string name, ValueHandler <T> getter, string ID = "")
 {
     QualifyPortNameAndID(ref name, ref ID, outputPorts);
     return((ValueOutput <T>)(outputPorts[ID] = new ValueOutput <T>(this, name, ID, getter)));
 }