mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
20 lines
518 B
C++
20 lines
518 B
C++
|
|
#include "../filesystem.h"
|
|
|
|
class FSUnknown : public Filesystem
|
|
{
|
|
public:
|
|
FSUnknown(const std::string &pDev, IFSImageFactory::EReadaheadMode read_ahead, bool background_priority, IFsNextBlockCallback* next_block_callback);
|
|
~FSUnknown(void);
|
|
|
|
int64 getBlocksize(void);
|
|
virtual int64 getSize(void);
|
|
const unsigned char * getBitmap(void);
|
|
|
|
virtual void logFileChanges(std::string volpath, int64 min_size, char* fc_bitmap);
|
|
|
|
private:
|
|
unsigned char *bitmap;
|
|
int64 drivesize;
|
|
int64 blocksize;
|
|
}; |