File indexing completed on 2024-05-05 05:48:42

0001 /*
0002     SPDX-FileCopyrightText: 2019 Andrius Štikonas <andrius@stikonas.eu>
0003     SPDX-FileCopyrightText: 2020 Arnaud Ferraris <arnaud.ferraris@collabora.com>
0004     SPDX-FileCopyrightText: 2020 Gaël PORTAY <gael.portay@collabora.com>
0005 
0006     SPDX-License-Identifier: GPL-3.0-or-later
0007 */
0008 
0009 #include "fs/apfs.h"
0010 
0011 namespace FS
0012 {
0013 FileSystem::CommandSupportType apfs::m_Move = FileSystem::cmdSupportCore;
0014 FileSystem::CommandSupportType apfs::m_Copy = FileSystem::cmdSupportCore;
0015 FileSystem::CommandSupportType apfs::m_Backup = FileSystem::cmdSupportCore;
0016 
0017 apfs::apfs(qint64 firstsector, qint64 lastsector, qint64 sectorsused, const QString& label, const QVariantMap& features) :
0018     FileSystem(firstsector, lastsector, sectorsused, label, features, FileSystem::Type::Apfs)
0019 {
0020 }
0021 }