18 lines
350 B
C#
18 lines
350 B
C#
///
|
|
/// Copyright (c) 2017 Sensus Metering Systems
|
|
///
|
|
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
{
|
|
public interface ISequenceCondition : IComponent
|
|
{
|
|
int ConditionsCount { get; }
|
|
|
|
/// Returned strings are added to the combo-box
|
|
string ConditionName(int i);
|
|
|
|
IOperation ConditionOp(int i);
|
|
}
|
|
}
|