tbf/TBF/Rig/TestMethods/RoiDetection/RoiDetectionFactory.cs

25 lines
813 B
C#

///
/// Copyright (c) 2017 Sensus Metering Systems
///
using System.Collections.Generic;
using TBF.Rig.Generic;
namespace TBF.Rig.TestMethods.RoiDetection
{
public class RoiDetectionFactory : IComponentFactory
{
public string ClassName { get { return GetType().Namespace.Substring(8); } }
public IComponent DummyComponent() { return new RoiDetection(); }
public IComponent GetComponent(IComponentCfg cfg, IList<IComponent> components) { return new RoiDetection(cfg); }
public IComponentCfg DefaultConfig() { return new RoiDetectionCfg(this, GetType().Namespace.Substring(20)); }
public IComponentCfg CmpntCfgFromCmpntEntity(Config.Entities.Component component)
{
return ComponentCfgBase.CreateFromDbEntity(RoiDetectionCfg.Serializer, component, this);
}
}
}