calamares/src/modules/plasmalnf/PlasmaLnfJob.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
705 B
C
Raw Normal View History

/* === This file is part of Calamares - <https://calamares.io> ===
2017-10-31 13:26:23 +01:00
*
2020-08-22 01:19:58 +02:00
* SPDX-FileCopyrightText: 2017 Adriaan de Groot <groot@kde.org>
* SPDX-License-Identifier: GPL-3.0-or-later
2017-10-31 13:26:23 +01:00
*
* Calamares is Free Software: see the License-Identifier above.
2017-10-31 13:26:23 +01:00
*
*/
#ifndef PLASMALNFJOB_H
#define PLASMALNFJOB_H
#include <QObject>
#include <QVariantMap>
#include "Job.h"
2017-10-31 13:26:23 +01:00
class PlasmaLnfJob : public Calamares::Job
2017-10-31 13:26:23 +01:00
{
Q_OBJECT
public:
explicit PlasmaLnfJob( const QString& lnfPath, const QString& id );
~PlasmaLnfJob() override;
2017-10-31 13:26:23 +01:00
QString prettyName() const override;
Calamares::JobResult exec() override;
private:
QString m_lnfPath;
QString m_id;
2017-10-31 13:26:23 +01:00
};
2020-08-22 01:19:58 +02:00
#endif // PLASMALNFJOB_H