예제 #1
0
 public SensorConnectionFile(int SenTbl, Sensor.SensorLocation SenLoc, int ETbl, int ESt)
 {
     sensorTable    = SenTbl;
     sensorLocation = SenLoc;
     endTable       = ETbl;
     endSeat        = ESt;
 }
예제 #2
0
 public bool isStartpoint(int table, Sensor.SensorLocation location)
 {
     if (table.Equals(sensorTable) && location.Equals(sensorLocation))
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
예제 #3
0
 public SensorRef(int t, Sensor.SensorLocation l)
 {
     table    = t;
     location = l;
 }