xref: /haiku/src/kits/storage/disk_device/jobs/DeleteChildJob.h (revision 7749d0bb0c358a3279b1b9cc76d8376e900130a5)
1 /*
2  * Copyright 2007, Ingo Weinhold, ingo_weinhold@gmx.de.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _DELETE_CHILD_JOB_H
6 #define _DELETE_CHILD_JOB_H
7 
8 #include "DiskDeviceJob.h"
9 
10 
11 namespace BPrivate {
12 
13 
14 class DeleteChildJob : public DiskDeviceJob {
15 public:
16 
17 								DeleteChildJob(PartitionReference* partition,
18 									PartitionReference* child);
19 	virtual						~DeleteChildJob();
20 
21 	virtual	status_t			Do();
22 };
23 
24 
25 }	// namespace BPrivate
26 
27 using BPrivate::DeleteChildJob;
28 
29 #endif	// _DELETE_CHILD_JOB_H
30