mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
14 lines
258 B
C#
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
|
|
{
|
|
}
|
|
}
|