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/unformatted.h"
0011 
0012 namespace FS
0013 {
0014 FileSystem::CommandSupportType unformatted::m_Create = FileSystem::cmdSupportFileSystem;
0015 
0016 unformatted::unformatted(qint64 firstsector, qint64 lastsector, qint64 sectorsused, const QString& label, const QVariantMap& features) :
0017     FileSystem(firstsector, lastsector, sectorsused, label, features, FileSystem::Type::Unformatted)
0018 {
0019 }
0020 
0021 bool unformatted::create(Report&, const QString&)
0022 {
0023     return true;
0024 }
0025 }