2020-01-18 05:38:21 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 05:38:21 -03:00
|
|
|
*/
|
|
|
|
|
|
2020-04-06 05:54:21 -03:00
|
|
|
#include <Kernel/FileSystem/FileBackedFileSystem.h>
|
2018-10-10 06:53:07 -03:00
|
|
|
|
2020-02-15 21:27:42 -03:00
|
|
|
namespace Kernel {
|
|
|
|
|
|
2020-04-06 05:54:21 -03:00
|
|
|
FileBackedFS::FileBackedFS(FileDescription& file_description)
|
|
|
|
|
: m_file_description(file_description)
|
2018-10-10 06:53:07 -03:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-06 05:54:21 -03:00
|
|
|
FileBackedFS::~FileBackedFS()
|
2018-10-10 06:53:07 -03:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-15 21:27:42 -03:00
|
|
|
}
|