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