tbf/TestBenchFramework/BenchControl/GenericDevices/ISequenceCondition.cs

18 lines
350 B
C#
Raw Normal View History

2017-02-11 08:11:11 +00:00
///
/// Copyright (c) 2017 Sensus Metering Systems
///
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.GenericDevices
{
public interface ISequenceCondition : IComponent
{
2017-02-11 09:12:10 +00:00
int ConditionsCount { get; }
2017-02-11 08:11:11 +00:00
/// Returned strings are added to the combo-box
string ConditionName(int i);
IOperation ConditionOp(int i);
}
}