26 lines
615 B
C#
26 lines
615 B
C#
/*
|
|
* IDataCollectionEnabled.cs
|
|
*
|
|
* Copyright © 2010
|
|
* Diversified Technical Systems, Inc.
|
|
* All Rights Reserved.
|
|
*/
|
|
|
|
namespace DTS.DAS.Concepts
|
|
{ ///
|
|
/// <summary>
|
|
/// Representation of the ability to perform a basic data collection.
|
|
/// </summary>
|
|
///
|
|
public interface IDataCollectionEnabled
|
|
: IArmable,
|
|
ITriggerable,
|
|
IDownloadEnabled
|
|
{ //
|
|
// Additional properties required for rudimentary data collection.
|
|
//
|
|
double[] AvailableSampleRates { get; }
|
|
double SampleRate { get; set; }
|
|
}
|
|
}
|