xref: /haiku/src/kits/storage/disk_device/jobs/RepairJob.cpp (revision 25ab0d1a4aef1c271845e86a50fa2ff6eb759f75)
1 /*
2  * Copyright 2007, Ingo Weinhold, ingo_weinhold@gmx.de.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 #include "RepairJob.h"
7 
8 #include "PartitionReference.h"
9 
10 
11 // constructor
12 RepairJob::RepairJob(PartitionReference* partition, bool checkOnly)
13 	: DiskDeviceJob(partition),
14 	  fCheckOnly(checkOnly)
15 {
16 }
17 
18 
19 // destructor
20 RepairJob::~RepairJob()
21 {
22 }
23 
24 
25 // Do
26 status_t
27 RepairJob::Do()
28 {
29 // Implement!
30 	return B_BAD_VALUE;
31 }
32 
33