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

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