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