53 lines
1.4 KiB
Plaintext
53 lines
1.4 KiB
Plaintext
/*
|
|
* DTS.Common.DAS.Concepts.DAS.Channel.Data.cs
|
|
*
|
|
* Copyright © 2009
|
|
* Diversified Technical Systems, Inc.
|
|
* All Rights Reserved
|
|
*/
|
|
|
|
using System.Collections.Generic;
|
|
using DTS.Common.Utilities;
|
|
|
|
namespace DTS.Common.DAS.Concepts.DAS.Channel
|
|
{
|
|
/// <summary>
|
|
/// Representation of a list of channel data.
|
|
/// </summary>
|
|
public abstract class Data<TDatumType> : ExceptionalList<TDatumType>
|
|
{
|
|
/// <summary>
|
|
/// Initialize an instance of the DTS.Common.DAS.Concepts.DAS.Channel.Data class.
|
|
/// </summary>
|
|
protected Data()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initialize an instance of the DTS.Common.DAS.Concepts.DAS.Channel.Data class.
|
|
/// </summary>
|
|
///
|
|
/// <param name="capacity">
|
|
/// The number of elements that the list can initially store.
|
|
/// </param>
|
|
///
|
|
protected Data(int capacity)
|
|
: base(capacity)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initialize an instance of the DTS.Common.DAS.Concepts.DAS.Channel.Data class.
|
|
/// </summary>
|
|
///
|
|
/// <param name="collection">
|
|
/// The collection whose elements are copied to the new list.
|
|
/// </param>
|
|
///
|
|
protected Data(IEnumerable<TDatumType> collection)
|
|
: base(collection)
|
|
{
|
|
}
|
|
}
|
|
}
|