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
11namespace BPrivate {
12
13
14class DeleteChildJob : public DiskDeviceJob {
15public:
16
17								DeleteChildJob(PartitionReference* partition,
18									PartitionReference* child);
19	virtual						~DeleteChildJob();
20
21	virtual	status_t			Do();
22};
23
24
25}	// namespace BPrivate
26
27using BPrivate::DeleteChildJob;
28
29#endif	// _DELETE_CHILD_JOB_H
30