Some small fixes.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3462 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -11,16 +11,13 @@
|
|||||||
namespace BPrivate {
|
namespace BPrivate {
|
||||||
namespace DiskDevice {
|
namespace DiskDevice {
|
||||||
|
|
||||||
class KFileSystem {
|
class KFileSystem : public KDiskSystem {
|
||||||
|
public:
|
||||||
KFileSystem(const char *name);
|
KFileSystem(const char *name);
|
||||||
virtual ~KFileSystem();
|
virtual ~KFileSystem();
|
||||||
|
|
||||||
virtual bool IsFileSystem() const;
|
virtual bool IsFileSystem() const;
|
||||||
|
|
||||||
virtual status_t Load(); // load/unload -- can be nested
|
|
||||||
virtual status_t Unload(); //
|
|
||||||
virtual bool IsLoaded() const;
|
|
||||||
|
|
||||||
// Scanning
|
// Scanning
|
||||||
|
|
||||||
virtual float Identify(KPartition *partition, void **cookie);
|
virtual float Identify(KPartition *partition, void **cookie);
|
||||||
@@ -60,6 +57,9 @@ class KFileSystem {
|
|||||||
const char *parameters,
|
const char *parameters,
|
||||||
KDiskDeviceJob *job);
|
KDiskDeviceJob *job);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
virtual status_t LoadModule();
|
||||||
|
virtual void UnloadModule();
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace DiskDevice
|
} // namespace DiskDevice
|
||||||
|
|||||||
Reference in New Issue
Block a user