Hardware/Mainboard/MainboardGroup.cs
author moel.mich
Mon, 23 Jul 2012 21:54:35 +0000
changeset 370 8e4dedc41924
parent 344 3145aadca3d2
permissions -rw-r--r--
Added a RAM hardware and sensor, fixed Issue 115.
     1 /*
     2  
     3   This Source Code Form is subject to the terms of the Mozilla Public
     4   License, v. 2.0. If a copy of the MPL was not distributed with this
     5   file, You can obtain one at http://mozilla.org/MPL/2.0/.
     6  
     7   Copyright (C) 2009-2010 Michael Möller <mmoeller@openhardwaremonitor.org>
     8 	
     9 */
    10 
    11 namespace OpenHardwareMonitor.Hardware.Mainboard {
    12   internal class MainboardGroup : IGroup {
    13 
    14     private readonly Mainboard[] mainboards;
    15 
    16     public MainboardGroup(SMBIOS smbios, ISettings settings) {
    17       mainboards = new Mainboard[1];
    18       mainboards[0] = new Mainboard(smbios, settings);
    19     }
    20 
    21     public void Close() {
    22       foreach (Mainboard mainboard in mainboards)
    23         mainboard.Close();
    24     }
    25 
    26     public string GetReport() {
    27       return null;
    28     }
    29 
    30     public IHardware[] Hardware {
    31       get { return mainboards; }
    32 
    33     }
    34   }
    35 }