QortalOS Brooklyn for Raspberry Pi 4
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
487 B

/*
SPDX-FileCopyrightText: 2009 Chani Armitage <[email protected]>
SPDX-License-Identifier: LGPL-2.0-only
*/
#pragma once
// plasma
#include <Plasma/ServiceJob>
// own
#include "appsource.h"
class AppJob : public Plasma::ServiceJob
{
Q_OBJECT
public:
AppJob(AppSource *source, const QString &operation, QMap<QString, QVariant> &parameters, QObject *parent = nullptr);
~AppJob() override;
protected:
void start() override;
private:
AppSource *m_source;
};