1/*
2 * Copyright 2007, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _REPAIR_JOB_H
6#define _REPAIR_JOB_H
7
8#include "DiskDeviceJob.h"
9
10
11namespace BPrivate {
12
13
14class RepairJob : public DiskDeviceJob {
15public:
16
17								RepairJob(PartitionReference* partition,
18									bool checkOnly);
19	virtual						~RepairJob();
20
21	virtual	status_t			Do();
22
23private:
24			bool				fCheckOnly;
25};
26
27
28}	// namespace BPrivate
29
30using BPrivate::RepairJob;
31
32#endif	// _REPAIR_JOB_H
33