Files
DP44/DataPRO/SensorDB/TSF/TSFChannel.cs

24 lines
739 B
C#
Raw Normal View History

2026-04-17 14:55:32 -04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DTS.SensorDB
{
/// <summary>
/// this class just adds TestChannelNumber to all channels in a TSF
/// some sections have a datachannel #, however tom squib fire channels don't, tom digital channels don't, etc
/// it's advantageous to still be able to index those channels as well
/// </summary>
public abstract class TSFChannel
{
public const int NOT_ASSIGNED = -1;
private int _testChannelNumber = NOT_ASSIGNED;
public int TestChannelNumber
{
get { return _testChannelNumber; }
set { _testChannelNumber = value; }
}
}
}