2015-04-15 18:32:56 +00:00
|
|
|
|
///
|
|
|
|
|
|
/// Copyright (c) 2013-2015 Sensus Metering Systems
|
|
|
|
|
|
///
|
|
|
|
|
|
using System;
|
2014-07-28 07:54:35 +00:00
|
|
|
|
using TBF.BenchControl;
|
|
|
|
|
|
|
|
|
|
|
|
namespace TBF.UiBridge
|
|
|
|
|
|
{
|
|
|
|
|
|
class CameraStateChangedEventArgs : EventArgs
|
|
|
|
|
|
{
|
|
|
|
|
|
public int CameraIdx;
|
|
|
|
|
|
public BenchControl.Cameras.IdcCamera.IdcState State;
|
|
|
|
|
|
|
|
|
|
|
|
public CameraStateChangedEventArgs(int cameraIdx, BenchControl.Cameras.IdcCamera.IdcState state)
|
|
|
|
|
|
{
|
|
|
|
|
|
CameraIdx = cameraIdx;
|
|
|
|
|
|
State = state;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|