Skip to content
Snippets Groups Projects
Commit 098aa554 authored by Teo Mrnjavac's avatar Teo Mrnjavac
Browse files

Add struct FstabEntry to OsproberEntry.h.

parent a3104e24
No related branches found
No related tags found
No related merge requests found
/* === This file is part of Calamares - <http://github.com/calamares> === /* === This file is part of Calamares - <http://github.com/calamares> ===
* *
* Copyright 2014, Teo Mrnjavac <teo@kde.org> * Copyright 2014-2016, Teo Mrnjavac <teo@kde.org>
* *
* Calamares is free software: you can redistribute it and/or modify * Calamares is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
...@@ -21,12 +21,25 @@ ...@@ -21,12 +21,25 @@
#include <QStringList> #include <QStringList>
struct FstabEntry
{
QString partitionNode;
QString mountPoint;
QString fsType;
QString options;
int dump;
int pass;
};
typedef QList< FstabEntry > FstabEntryList;
struct OsproberEntry struct OsproberEntry
{ {
QString prettyName; QString prettyName;
QString path; QString path;
bool canBeResized; bool canBeResized;
QStringList line; QStringList line;
FstabEntryList fstab;
}; };
typedef QList< OsproberEntry > OsproberEntryList; typedef QList< OsproberEntry > OsproberEntryList;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment