tbf/TestBenchFramework/BenchControl/DataEntry/StandardCamera/EntryForm.cs

21 lines
335 B
C#
Raw Normal View History

///
/// 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)
{
}
}
}