kpmcore/src/plugins/sfdisk/sfdiskdevice.h

43 lines
888 B
C
Raw Normal View History

/*
SPDX-FileCopyrightText: 2017-2018 Andrius Štikonas <andrius@stikonas.eu>
SPDX-FileCopyrightText: 2019 Yuri Chornoivan <yurchor@ukr.net>
2017-09-17 15:33:25 +01:00
SPDX-License-Identifier: GPL-3.0-or-later
*/
#ifndef SFDISKDEVICE__H
2017-09-17 15:33:25 +01:00
#define SFDISKDEVICE__H
#include "backend/corebackenddevice.h"
#include "core/device.h"
2017-09-17 15:33:25 +01:00
#include <QtGlobal>
class Partition;
class PartitionTable;
class Report;
class CoreBackendPartitionTable;
class SfdiskDevice : public CoreBackendDevice
{
Q_DISABLE_COPY(SfdiskDevice)
2017-09-17 15:33:25 +01:00
public:
2019-12-09 16:09:53 +00:00
explicit SfdiskDevice(const Device& d);
2017-09-17 15:33:25 +01:00
~SfdiskDevice();
public:
bool open() override;
bool openExclusive() override;
bool close() override;
std::unique_ptr<CoreBackendPartitionTable> openPartitionTable() override;
2017-09-17 15:33:25 +01:00
bool createPartitionTable(Report& report, const PartitionTable& ptable) override;
private:
const Device *m_device;
2017-09-17 15:33:25 +01:00
};
#endif