2014-05-25 16:13:15 +02:00
|
|
|
|
using System.Xml;
|
|
|
|
|
|
using ChanSort.Api;
|
|
|
|
|
|
|
|
|
|
|
|
namespace ChanSort.Loader.GlobalClone
|
|
|
|
|
|
{
|
2020-05-03 18:07:28 +02:00
|
|
|
|
internal class GcChannel<TNode> : ChannelInfo
|
2014-05-25 16:13:15 +02:00
|
|
|
|
{
|
|
|
|
|
|
internal int Index;
|
2020-05-03 18:07:28 +02:00
|
|
|
|
internal TNode Node;
|
2017-11-30 14:50:22 +01:00
|
|
|
|
internal bool IsDisabled;
|
2014-05-25 16:13:15 +02:00
|
|
|
|
|
|
|
|
|
|
#region ctor()
|
2020-05-03 18:07:28 +02:00
|
|
|
|
internal GcChannel(SignalSource source, int index, TNode node)
|
2014-05-25 16:13:15 +02:00
|
|
|
|
{
|
|
|
|
|
|
this.SignalSource = source;
|
|
|
|
|
|
this.Index = index;
|
2020-05-03 18:07:28 +02:00
|
|
|
|
this.Node = node;
|
2014-05-25 16:13:15 +02:00
|
|
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|