/* SPDX-FileCopyrightText: 2011 Viranch Mehta SPDX-License-Identifier: LGPL-2.0-only */ #pragma once #include class HotplugEngine; class HotplugService : public Plasma::Service { Q_OBJECT public: HotplugService(HotplugEngine *parent, const QString &source); protected: Plasma::ServiceJob *createJob(const QString &operation, QMap ¶meters) override; private: HotplugEngine *m_engine; QString m_dest; };