4#include <cosmos/fs/FileBase.hxx>
27 *
this = std::move(other);
30 FDFile& operator=(FDFile &&other)
noexcept {
31 m_auto_close = other.m_auto_close;
32 other.m_auto_close = AutoCloseFD{
true};
34 FileBase::operator=(std::move(other));
52 m_auto_close = auto_close;
File objects that are opened from existing FileDescriptor objects.
void close() override
Close the current file object.
void open(const FileDescriptor fd, const AutoCloseFD auto_close)
Takes the already open file descriptor fd and operates on it.
FDFile(const FileDescriptor fd, const AutoCloseFD auto_close)
Wrap the given file descriptor applying the specified auto-close behaviour.
Base class for File types with ownership of a FileDescriptor.
Thin Wrapper around OS file descriptors.