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