Cosmos/source2/Kernel/System/Hardware/Cosmos.Hardware/BlockDevice/Partition.cs
kudzu_cp dc58fdd249
2011-02-23 17:17:35 +00:00

15 lines
272 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Hardware.BlockDevice {
public class Partition {
BlockDevice mHost;
public Partition(BlockDevice aHost) {
mHost = aHost;
}
}
}