/* SPDX-FileCopyrightText: 2008 Rob Scheepmaker SPDX-License-Identifier: LGPL-2.0-only */ #pragma once #include #include #include "job.h" class JobControl : public Plasma5Support::Service { Q_OBJECT public: JobControl(QObject *parent, NotificationManager::Job *job); protected: Plasma5Support::ServiceJob *createJob(const QString &operation, QMap ¶meters) override; private: QPointer m_job; };