xref: /haiku/src/kits/storage/disk_device/jobs/DefragmentJob.cpp (revision 25ab0d1a4aef1c271845e86a50fa2ff6eb759f75)
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