28 lines
791 B
C#
28 lines
791 B
C#
/*
|
|
* DTS.Slice.Control.Event.ModuleChannelAccessor.cs
|
|
*
|
|
* Copyright © 2009
|
|
* Diversified Technical Systems, Inc.
|
|
* All Rights Reserved
|
|
*/
|
|
|
|
using DTS.Common.Utilities;
|
|
|
|
namespace DTS.Slice.Control
|
|
{
|
|
// *** see DTS.Slice.Control.Event.cs ***
|
|
public partial class Event
|
|
{
|
|
/// <summary>
|
|
/// A component object of the Event.DasModuleChannelAccessor.
|
|
/// </summary>
|
|
public class ModuleChannelAccessor : ExceptionalDictionary<int, ChannelAccessor> // xxx change this int to DAS.Module.Id?
|
|
{
|
|
/// <summary>
|
|
/// Initialize an instance of the DTS.Slice.Control.Event.ModuleChannelAccessor class.
|
|
/// </summary>
|
|
public ModuleChannelAccessor() { }
|
|
}
|
|
}
|
|
}
|