21 lines
335 B
C#
21 lines
335 B
C#
|
|
///
|
|||
|
|
/// 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)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|