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