mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
4a9c18afb9
Dr. POSIX really calls these "open file description", not just "file description", so let's call them exactly that. :^)
21 lines
373 B
C++
21 lines
373 B
C++
/*
|
|
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <Kernel/FileSystem/FileBackedFileSystem.h>
|
|
|
|
namespace Kernel {
|
|
|
|
FileBackedFileSystem::FileBackedFileSystem(OpenFileDescription& file_description)
|
|
: m_file_description(file_description)
|
|
{
|
|
}
|
|
|
|
FileBackedFileSystem::~FileBackedFileSystem()
|
|
{
|
|
}
|
|
|
|
}
|