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

21 lines
331 B
C#
Raw Normal View History

2015-05-19 16:46:36 +00:00
///
/// Copyright (c) 2017 Sensus Metering Systems
2015-05-19 16:46:36 +00:00
///
using TBF.BenchControl.GenericDevices;
namespace TBF.BenchControl.DataEntry.Standard24
{
public class EntryForm : EntryFormNoStartEnd, IHasWMStatesForm
2015-05-19 16:46:36 +00:00
{
public EntryForm()
: base()
{
}
public EntryForm(Generic.IComponentCfg cfg)
: base(cfg)
2015-05-19 16:46:36 +00:00
{
}
2015-05-19 16:46:36 +00:00
}
}