Tentative LUKS support for EraseAutopartition.

Partitioning only, install doesn't work yet.
This commit is contained in:
Teo Mrnjavac 2016-04-22 16:49:58 +02:00
parent 0cc9560a99
commit 759ccae9f6
2 changed files with 58 additions and 19 deletions

View file

@ -19,14 +19,21 @@
#ifndef PARTITIONACTIONS_H
#define PARTITIONACTIONS_H
#include <QString>
class PartitionCoreModule;
class Device;
class Partition;
namespace PartitionActions
{
void doAutopartition( PartitionCoreModule* core, Device* dev );
void doReplacePartition( PartitionCoreModule* core, Device* dev, Partition* partition );
void doAutopartition( PartitionCoreModule* core,
Device* dev,
const QString& luksPassphrase = QString() );
void doReplacePartition( PartitionCoreModule* core,
Device* dev,
Partition* partition );
}
#endif // PARTITIONACTIONS_H