79 lines
1.2 KiB
C#
79 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace TBF.Entities
|
|
{
|
|
/// <summary>
|
|
/// Kind of meters for the procedure / test
|
|
/// </summary>
|
|
public enum MetersKind
|
|
{
|
|
Single,
|
|
Combined,
|
|
}
|
|
|
|
/// <summary>
|
|
/// Flow set method Std/ComposedMeter
|
|
/// </summary>
|
|
public enum QSetMethod
|
|
{
|
|
Std,
|
|
ComposedMeter,
|
|
Count,
|
|
}
|
|
|
|
/// <summary>
|
|
/// Procedure method FSS/SSS
|
|
/// </summary>
|
|
public enum TestMethod2
|
|
{
|
|
FSS,
|
|
SSS,
|
|
Count,
|
|
}
|
|
|
|
public enum TestRedType
|
|
{
|
|
Fix,
|
|
/// etc.
|
|
Count,
|
|
}
|
|
|
|
public enum FQC1
|
|
{
|
|
FQC1,
|
|
FQP1,
|
|
Count,
|
|
}
|
|
|
|
/// <summary>
|
|
/// Possible modes of operation of components and devices.
|
|
/// </summary>
|
|
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,
|
|
}
|
|
}
|
|
|