Cosmos/source/Cosmos.Hardware.SMBIOS/SMBIOS Tables/BaseInfo.cs
2009-08-23 12:52:01 +00:00

25 lines
No EOL
544 B
C#

/* Licensed under the terms of the New BSD License.
*
* Authors:
* Gero Landmann (gero_dev) <gero@myzeug.de>
*/
using System;
using System.Collections.Generic;
using Cosmos.TestKernelHelpers;
using Cosmos.Compiler.Builder;
using Cosmos.Kernel;
namespace Cosmos.Hardware.SMBIOS
{
public abstract class BaseInfo : IHardwareType
{
#region IHardwareType Members
public byte HardwareType { get; protected set; }
public ushort Handle { get; protected set; }
#endregion
}
}