mirror of
https://github.com/openeggbert/mobile-eggbert-kni-web.git
synced 2025-03-24 15:20:04 +01:00
15 lines
366 B
C#
15 lines
366 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Microsoft.Devices.Sensors
|
|||
|
{
|
|||
|
public abstract class SensorBase<TSensorReading> : IDisposable where TSensorReading : ISensorReading
|
|||
|
{
|
|||
|
private TSensorReading currentValue;
|
|||
|
|
|||
|
public event EventHandler<SensorReadingEventArgs<TSensorReading>> CurrentValueChanged;
|
|||
|
|
|||
|
public void Dispose()
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|