Cosmos/source/Archive/Cosmos.Drivers/PCI/PCIDriver.cs

14 lines
258 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Drivers.PCI
{
/// <summary>
/// Represents a generic PCI driver.
/// </summary>
public abstract class PCIDriver : Driver
{
}
}