2017-04-06 10:32:46 +00:00
|
|
|
|
///
|
|
|
|
|
|
/// Copyright (c) 2017 Sensus Metering Systems
|
|
|
|
|
|
///
|
|
|
|
|
|
|
|
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface ICameraDisplay : Generic.IComponent
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Display static images.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns>Reference to operation object instance</returns>
|
|
|
|
|
|
IOperation ShowStaticImageOp(string[] imageFileNames, string title);
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Display static images.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns>Reference to operation object instance</returns>
|
|
|
|
|
|
IOperation ShowLiveStreamOp(string[] imageFileNames, string title);
|
2017-04-06 14:54:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool[] SelectedImages { get; }
|
2017-04-06 10:32:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|