thin-provisioning-tools/thin-provisioning/device_checker.h

19 lines
408 B
C
Raw Normal View History

2013-04-29 17:54:19 +05:30
#ifndef THIN_DEVICE_CHECKER_H
#define THIN_DEVICE_CHECKER_H
#include "thin-provisioning/metadata_checker.h"
//----------------------------------------------------------------
namespace thin_provisioning {
class device_checker : public checker {
public:
device_checker(block_manager::ptr bm);
damage_list_ptr check();
};
}
//----------------------------------------------------------------
#endif