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