init
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user