kpmcore/src/fs/ufs.h

55 lines
1.3 KiB
C
Raw Normal View History

2020-09-28 00:45:21 +01:00
/*
SPDX-FileCopyrightText: 2008-2010 Volker Lanz <vl@fidra.de>
SPDX-FileCopyrightText: 2015 Chris Campbell <c.j.campbell@ed.ac.uk>
SPDX-FileCopyrightText: 2016 Andrius Štikonas <andrius@stikonas.eu>
SPDX-FileCopyrightText: 2020 Arnaud Ferraris <arnaud.ferraris@collabora.com>
SPDX-FileCopyrightText: 2020 Gaël PORTAY <gael.portay@collabora.com>
2020-09-28 00:45:21 +01:00
SPDX-License-Identifier: GPL-3.0-or-later
*/
#ifndef KPMCORE_UFS_H
#define KPMCORE_UFS_H
#include "util/libpartitionmanagerexport.h"
#include "fs/filesystem.h"
#include <QtGlobal>
class QString;
namespace FS
{
2015-07-13 15:16:36 +01:00
/** A UFS file system.
@author Volker Lanz <vl@fidra.de>
*/
class LIBKPMCORE_EXPORT ufs : public FileSystem
{
public:
ufs(qint64 firstsector, qint64 lastsector, qint64 sectorsused, const QString& label, const QVariantMap& features = {});
2015-07-13 15:16:36 +01:00
public:
2016-05-17 18:01:31 +01:00
CommandSupportType supportMove() const override {
2015-07-13 15:16:36 +01:00
return m_Move;
}
2016-05-17 18:01:31 +01:00
CommandSupportType supportCopy() const override {
2015-07-13 15:16:36 +01:00
return m_Copy;
}
2016-05-17 18:01:31 +01:00
CommandSupportType supportBackup() const override {
2015-07-13 15:16:36 +01:00
return m_Backup;
}
2016-05-17 18:01:31 +01:00
bool supportToolFound() const override {
2015-07-13 15:16:36 +01:00
return true;
}
public:
static CommandSupportType m_Move;
static CommandSupportType m_Copy;
static CommandSupportType m_Backup;
};
}
#endif