using System;
using System.Collections.Generic;
namespace TBF.Entities
{
///
/// Kind of meters for the procedure / test
///
public enum MetersKind
{
Single,
Combined,
}
///
/// Flow set method Std/ComposedMeter
///
public enum QSetMethod
{
Std,
ComposedMeter,
Count,
}
///
/// Procedure method FSS/SSS
///
public enum TestMethod2
{
FSS,
SSS,
Count,
}
public enum TestRedType
{
Fix,
/// etc.
Count,
}
public enum FQC1
{
FQC1,
FQP1,
Count,
}
///
/// Possible modes of operation of components and devices.
///
public enum DebugMode
{
DetectedOff = -2,
DetectedOn = -1,
Normal = 0, /// Normal operation
AutoDetect, /// The component (device) will be auto-detected
Off, /// The component is off
Record,
Reply,
Simulate, /// Test bench simulation, this mode does not require any hardware
Inherit,
Count,
}
public enum LogLevel
{
Off,
Fatal,
Error,
Warn,
Info,
Debug,
All,
Count,
}
}