Chameleon

Chameleon Svn Source Tree

Root/branches/rewrite/i386/modules/Disk/GUIDPartition.cpp

Source at commit 1086 created 12 years 10 months ago.
By meklort, More disk changes... more to come too
1/*
2 * Copyright (c) 2011 Evan Lojewski. All rights reserved.
3 *
4 */
5#include <GUIDPartition.hpp>
6
7
8GUIDPartition::GUIDPartition(Disk* disk, UInt8 partitionNumber) : Partition(disk, partitionNumber)
9{
10 mDisk = disk;
11 mNumSectors = 0;
12 mBeginSector = 0;
13 mPartitionNumber = partitionNumber;
14 mNumPartitions = 0;
15}
16
17GUIDPartition::~GUIDPartition()
18{
19
20}

Archive Download this file

Revision: 1086