Refactoring: New class Computer manages all the hardware and creates events.

This commit is contained in:
Michael Möller
2010-02-07 16:37:15 +00:00
parent 15162a2a12
commit 31adbedc3c
9 changed files with 325 additions and 164 deletions

View File

@@ -54,7 +54,9 @@ namespace OpenHardwareMonitor.Hardware {
}
public interface ISensor {
IHardware Hardware { get; }
SensorType SensorType { get; }
string Identifier { get; }
string Name { get; set; }
int Index { get; }
float? Value { get; }