xref: /haiku/src/add-ons/kernel/file_systems/bfs/ResizeVisitor.cpp (revision 68ea01249e1e2088933cb12f9c28d4e5c5d1c9ef)
1 /*
2  * Copyright (C) 2020 Adrien Destugues <pulkomandy@pulkomandy.tk>
3  *
4  * Distributed under terms of the MIT license.
5  */
6 
7 #include "ResizeVisitor.h"
8 
9 
10 ResizeVisitor::ResizeVisitor(Volume* volume)
11 	:
12 	FileSystemVisitor(volume)
13 {
14 }
15 
16 
17 status_t
18 ResizeVisitor::Resize(off_t size, disk_job_id job)
19 {
20 	return B_NOT_SUPPORTED;
21 }
22