mirror of
https://github.com/ksherlock/profuse.git
synced 2024-12-25 23:33:15 +00:00
34 lines
718 B
C++
34 lines
718 B
C++
#ifndef __DISKCOPY42IMAGE_H__
|
|
#define __DISKCOPY42IMAGE_H__
|
|
|
|
#include "BlockDevice.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace ProFUSE {
|
|
|
|
class DiskCopy42Image : public DiskImage {
|
|
public:
|
|
DiskCopy42Image(const char *name, bool readOnly);
|
|
virtual ~DiskCopy42Image();
|
|
|
|
static DiskCopy42Image *Create(const char *name, size_t blocks);
|
|
static DiskCopy42Image *Create(const char *name, size_t blocks, const char *vname);
|
|
|
|
static DiskCopy42Image *Open(MappedFile *);
|
|
|
|
static uint32_t Checksum(void *data, size_t size);
|
|
|
|
virtual void write(unsigned block, const void *bp);
|
|
|
|
|
|
private:
|
|
|
|
DiskCopy42Image(MappedFile *);
|
|
static void Validate(MappedFile *);
|
|
bool _changed;
|
|
};
|
|
|
|
}
|
|
|
|
#endif |