tbf/TestBenchFramework/BenchControl/TestMethods/RoiDetection/RoiDetectionCfg.cs
2017-01-14 21:09:57 +01:00

35 lines
812 B
C#

///
/// Copyright (c) 2017 Sensus Metering Systems
///
using System;
using System.Collections.Generic;
using System.IO;
using System.Xml.Serialization;
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.TestMethods.RoiDetection
{
public class RoiDetectionCfg : ComponentCfgBase, Generic.IComponentCfg
{
public IComponentCfgCtrl GetControl() { return new RoiDetectionCfgCtrl(); }
/// Private parameterless constructor invoked by all other (public) constructors
RoiDetectionCfg()
{
Name = "RoiDetection";
ParentName = string.Empty;
}
public RoiDetectionCfg(IComponentFactory factory)
: this()
{
this.Factory = factory;
}
public string ToString(int i)
{
return string.Format("Name={0}", Name);
}
}
}