Files
tbf/TBF/BenchControl/Generic/IComponent.cs
T

29 lines
518 B
C#

///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
using System.Collections.Generic;
namespace TBF.BenchControl.Generic
{
public interface IComponent
{
string Name { get; }
string ClassName { get; }
string ParentName { get; }
Config.Entities.DebugMode DebugLevel { get; }
Config.Entities.LogLevel LogLevel { get; }
IComponentCfg Cfg { get; }
IList<Config.Entities.MeasurementCorrection> Corrections { get; set; }
void StartChangeHandler();
void StopChangeHandler();
}
}