mirror of
https://github.com/parchlinux/calamares.git
synced 2025-07-13 09:46:07 -04:00
- point to main Calamares site in the 'part of' headers instead of to github (this is the "this file is part of Calamares" opening line for most files). - remove boilerplate from all source files, CMake modules and completions, this is the 3-paragraph summary of the GPL-3.0-or-later, which has a meaning entirely covered by the SPDX tag.
43 lines
976 B
C++
43 lines
976 B
C++
/* === This file is part of Calamares - <https://calamares.io> ===
|
|
*
|
|
* SPDX-FileCopyrightText: 2016 Kevin Kofler <kevin.kofler@chello.at>
|
|
* SPDX-FileCopyrightText: 2017 Adriaan de Groot <groot@kde.org>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* Calamares is Free Software: see the License-Identifier above.
|
|
*
|
|
*/
|
|
|
|
#ifndef DUMMYCPPJOB_H
|
|
#define DUMMYCPPJOB_H
|
|
|
|
#include <QObject>
|
|
#include <QVariantMap>
|
|
|
|
#include "CppJob.h"
|
|
|
|
#include "utils/PluginFactory.h"
|
|
|
|
#include "DllMacro.h"
|
|
|
|
class PLUGINDLLEXPORT DummyCppJob : public Calamares::CppJob
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit DummyCppJob( QObject* parent = nullptr );
|
|
virtual ~DummyCppJob() override;
|
|
|
|
QString prettyName() const override;
|
|
|
|
Calamares::JobResult exec() override;
|
|
|
|
void setConfigurationMap( const QVariantMap& configurationMap ) override;
|
|
|
|
private:
|
|
QVariantMap m_configurationMap;
|
|
};
|
|
|
|
CALAMARES_PLUGIN_FACTORY_DECLARATION( DummyCppJobFactory )
|
|
|
|
#endif // DUMMYCPPJOB_H
|