27 lines
721 B
C#
27 lines
721 B
C#
/*
|
|
* DTS.Slice.Control.Event.DasModuleAccessor.cs
|
|
*
|
|
* Copyright © 2009
|
|
* Diversified Technical Systems, Inc.
|
|
* All Rights Reserved
|
|
*/
|
|
|
|
using System.Collections.Generic;
|
|
using DTS.Common.Utilities;
|
|
|
|
namespace DTS.Slice.Control
|
|
{
|
|
// *** see DTS.Slice.Control.Event.cs ***
|
|
public partial class Event
|
|
{
|
|
/// <summary>
|
|
/// An object returned during Event creation that allows access to the event's module information
|
|
/// by DAS ID/DAS module number pair.
|
|
/// </summary>
|
|
public class DasModuleAccessor : ExceptionalDictionary<Common.DAS.Concepts.DAS.Id, List<Module>>
|
|
{
|
|
public DasModuleAccessor() { }
|
|
}
|
|
}
|
|
}
|