671a745561
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3900 a95241bf-73f2-0310-859d-f6bbb57e9c96
55 lines
1.3 KiB
C++
55 lines
1.3 KiB
C++
//----------------------------------------------------------------------
|
|
// This software is part of the OpenBeOS distribution and is covered
|
|
// by the OpenBeOS license.
|
|
//---------------------------------------------------------------------
|
|
|
|
#ifndef _DISK_DEVICE_PRIVATE_H
|
|
#define _DISK_DEVICE_PRIVATE_H
|
|
|
|
#include <DiskDeviceDefs.h>
|
|
#include <DiskDeviceVisitor.h>
|
|
|
|
class BMessenger;
|
|
|
|
namespace BPrivate {
|
|
|
|
// PartitionFilter
|
|
class PartitionFilter {
|
|
public:
|
|
virtual bool Filter(BPartition *partition, int32 level) = 0;
|
|
};
|
|
|
|
// PartitionFilterVisitor
|
|
class PartitionFilterVisitor : public BDiskDeviceVisitor {
|
|
public:
|
|
PartitionFilterVisitor(BDiskDeviceVisitor *visitor,
|
|
PartitionFilter *filter);
|
|
|
|
virtual bool Visit(BDiskDevice *device);
|
|
virtual bool Visit(BPartition *partition, int32 level);
|
|
|
|
private:
|
|
BDiskDeviceVisitor *fVisitor;
|
|
PartitionFilter *fFilter;
|
|
};
|
|
|
|
// IDFinderVisitor
|
|
class IDFinderVisitor : public BDiskDeviceVisitor {
|
|
public:
|
|
IDFinderVisitor(partition_id id);
|
|
|
|
virtual bool Visit(BDiskDevice *device);
|
|
virtual bool Visit(BPartition *partition, int32 level);
|
|
|
|
private:
|
|
partition_id fID;
|
|
};
|
|
|
|
} // namespace BPrivate
|
|
|
|
using BPrivate::PartitionFilter;
|
|
using BPrivate::PartitionFilterVisitor;
|
|
using BPrivate::IDFinderVisitor;
|
|
|
|
#endif // _DISK_DEVICE_PRIVATE_H
|