public DatapointEvent(Datapoint c, Datapoint p)
 {
     Current  = c;
     Previous = p;
 }
Beispiel #2
0
 public TypedDatapoint(Datapoint dp)
 {
     UnderlyingDatapoint = dp;
 }
Beispiel #3
0
 public void SetRoomValue(Datapoint dp, object newValue)
 {
     dp.SetRoomValue(newValue, typeof(T));
 }