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
10ResizeVisitor::ResizeVisitor(Volume* volume)
11	:
12	FileSystemVisitor(volume)
13{
14}
15
16
17status_t
18ResizeVisitor::Resize(off_t size, disk_job_id job)
19{
20	return B_NOT_SUPPORTED;
21}
22