42 lines
916 B
C++
42 lines
916 B
C++
// KPartition.h
|
|||
|
|
|
||
|
|
#ifndef _K_DISK_DEVICE_SHADOW_PARTITION_H
|
||
|
|
#define _K_DISK_DEVICE_SHADOW_PARTITION_H
|
||
|
|
|
||
|
|
#include "KPartition.h"
|
||
|
|
|
||
|
|
namespace BPrivate {
|
||
|
|
namespace DiskDevice {
|
||
|
|
|
||
|
|
class KPhysicalPartition;
|
||
|
|
|
||
|
|
class KShadowPartition : public KPartition {
|
||
|
|
public:
|
||
|
|
KShadowPartition(KPhysicalPartition *physicalPartition);
|
||
|
|
virtual ~KShadowPartition();
|
||
|
|
|
||
|
|
// Hierarchy
|
||
|
|
|
||
|
|
virtual status_t CreateChild(partition_id id, int32 index,
|
||
|
|
KPartition **child = NULL);
|
||
|
|
|
||
|
|
// Shadow Partition
|
||
|
|
|
||
|
|
virtual KShadowPartition *ShadowPartition();
|
||
|
|
virtual bool IsShadowPartition() const;
|
||
|
|
void SetPhysicalPartition(KPhysicalPartition *partition);
|
||
|
|
virtual KPhysicalPartition *PhysicalPartition();
|
||
|
|
|
||
|
|
virtual void Dump(bool deep, int32 level);
|
||
|
|
|
||
|
|
protected:
|
||
|
|
KPhysicalPartition *fPhysicalPartition;
|
||
|
|
};
|
||
|
|
|
||
|
|
} // namespace DiskDevice
|
||
|
|
} // namespace BPrivate
|
||
|
|
|
||
|
|
using BPrivate::DiskDevice::KShadowPartition;
|
||
|
|
|
||
|
|
#endif // _K_DISK_DEVICE_SHADOW_PARTITION_H
|