2015-01-02 18:14:19 +00:00
|
|
|
|
using TBF.BenchControl.Generic;
|
2014-07-28 07:54:35 +00:00
|
|
|
|
|
|
|
|
|
|
namespace TBF.BenchControl.Cameras.IdcCamera
|
|
|
|
|
|
{
|
|
|
|
|
|
public class IdcCameraFactory : IComponentFactory
|
|
|
|
|
|
{
|
|
|
|
|
|
public string ClassName { get { return "IdcCamera"; } }
|
|
|
|
|
|
|
2015-01-02 18:14:19 +00:00
|
|
|
|
public void ResetStaticProperties() { IdcCamera.ResetStaticProperties(); }
|
2014-07-28 07:54:35 +00:00
|
|
|
|
|
2015-01-02 18:14:19 +00:00
|
|
|
|
public IComponentCfg DefaultConfig() { return new IdcCameraCfg(this); }
|
2014-07-28 07:54:35 +00:00
|
|
|
|
|
|
|
|
|
|
public IComponentCfg CmpntCfgFromCmpntEntity(Entities.Component component)
|
|
|
|
|
|
{
|
2014-12-29 15:00:27 +00:00
|
|
|
|
return ComponentCfgBase.CreateFromDbEntity(typeof(IdcCameraCfg), component, this);
|
2014-07-28 07:54:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|