/*
* 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
{
///
/// Representation of a list of channel data.
///
public abstract class Data : ExceptionalList
{
///
/// Initialize an instance of the DTS.Common.DAS.Concepts.DAS.Channel.Data class.
///
protected Data()
{
}
///
/// Initialize an instance of the DTS.Common.DAS.Concepts.DAS.Channel.Data class.
///
///
///
/// The number of elements that the list can initially store.
///
///
protected Data(int capacity)
: base(capacity)
{
}
///
/// Initialize an instance of the DTS.Common.DAS.Concepts.DAS.Channel.Data class.
///
///
///
/// The collection whose elements are copied to the new list.
///
///
protected Data(IEnumerable collection)
: base(collection)
{
}
}
}