mirror of
https://github.com/ksherlock/profuse.git
synced 2025-01-09 00:30:45 +00:00
7fb0604b76
git-svn-id: https://profuse.googlecode.com/svn/branches/profuse_interim@332 aa027e90-d47c-11dd-86d7-074df07e0730
40 lines
740 B
C++
40 lines
740 B
C++
#ifndef __DAVEXDISKIMAGE_H__
|
|
#define __DAVEXDISKIMAGE_H__
|
|
|
|
#include <string>
|
|
|
|
#include <Device/BlockDevice.h>
|
|
#include <Device/DiskImage.h>
|
|
|
|
|
|
namespace Device {
|
|
|
|
// only supports 1 file; may be split over multiple files.
|
|
|
|
class DavexDiskImage : public DiskImage {
|
|
public:
|
|
|
|
virtual ~DavexDiskImage();
|
|
|
|
static DavexDiskImage *Create(const char *name, size_t blocks);
|
|
static DavexDiskImage *Create(const char *name, size_t blocks, const char *vname);
|
|
static DavexDiskImage *Open(MappedFile *);
|
|
|
|
virtual BlockCache *createBlockCache();
|
|
|
|
private:
|
|
|
|
DavexDiskImage();
|
|
|
|
DavexDiskImage(MappedFile *);
|
|
static void Validate(MappedFile *);
|
|
|
|
bool _changed;
|
|
std::string _volumeName;
|
|
};
|
|
|
|
|
|
}
|
|
|
|
#endif
|