bool UsesCameras() added to IDataEntry and DataEntry components, DataEntry.StandardCamera added.

This commit is contained in:
Milan Hanajik
2017-07-27 16:37:58 +03:00
parent 62cb5cdba7
commit 3a38ca6b61
32 changed files with 7206 additions and 4 deletions
@@ -0,0 +1,20 @@
///
/// Copyright (c) 2017 Sensus Metering Systems
///
using TBF.BenchControl.GenericDevices;
namespace TBF.BenchControl.DataEntry.StandardCamera
{
public class EntryForm : EntryFormNoStartEnd, IHasWMStatesForm
{
public EntryForm()
: base()
{
}
public EntryForm(Generic.IComponentCfg cfg)
: base(cfg)
{
}
}
}