29 lines
606 B
C#
29 lines
606 B
C#
using System;
|
|
using System.IO;
|
|
using System.Xml.Serialization;
|
|
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.TestMethods.CameraRoiDetection
|
|
{
|
|
public class RoiDetectionCfg : ComponentCfgBase, Generic.IComponentCfg
|
|
{
|
|
/// Parameterless constructor
|
|
public 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);
|
|
}
|
|
}
|
|
}
|