24 lines
739 B
C#
24 lines
739 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|