19 lines
424 B
C
Raw Normal View History

2013-04-25 16:27:07 +01:00
#ifndef THIN_SUPERBLOCK_CHECKER_H
#define THIN_SUPERBLOCK_CHECKER_H
#include "thin-provisioning/metadata_checker.h"
//----------------------------------------------------------------
namespace thin_provisioning {
class superblock_checker : public checker {
public:
superblock_checker(block_manager::ptr bm);
2013-04-29 13:24:19 +01:00
damage_list_ptr check();
2013-04-25 16:27:07 +01:00
};
}
//----------------------------------------------------------------
#endif