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

0001 /*
0002     SPDX-FileCopyrightText: 2008-2010 Volker Lanz <vl@fidra.de>
0003     SPDX-FileCopyrightText: 2016-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/extended.h"
0011 
0012 namespace FS
0013 {
0014 FileSystem::CommandSupportType extended::m_Create = FileSystem::cmdSupportFileSystem;
0015 FileSystem::CommandSupportType extended::m_Grow = FileSystem::cmdSupportCore;
0016 FileSystem::CommandSupportType extended::m_Shrink = FileSystem::cmdSupportCore;
0017 FileSystem::CommandSupportType extended::m_Move = FileSystem::cmdSupportCore;
0018 
0019 extended::extended(qint64 firstsector, qint64 lastsector, qint64 sectorsused, const QString& label, const QVariantMap& features) :
0020     FileSystem(firstsector, lastsector, sectorsused, label, features, FileSystem::Type::Extended)
0021 {
0022 }
0023 
0024 bool extended::create(Report&, const QString&)
0025 {
0026     return true;
0027 }
0028 }
0029