File indexing completed on 2024-05-12 05:37:20

0001 /*
0002     SPDX-FileCopyrightText: 2011 Viranch Mehta <viranch.mehta@gmail.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-only
0005 */
0006 
0007 #pragma once
0008 
0009 #include <Plasma5Support/Service>
0010 
0011 class SolidDeviceEngine;
0012 
0013 class SolidDeviceService : public Plasma5Support::Service
0014 {
0015     Q_OBJECT
0016 
0017 public:
0018     SolidDeviceService(SolidDeviceEngine *parent, const QString &source);
0019 
0020 protected:
0021     Plasma5Support::ServiceJob *createJob(const QString &operation, QMap<QString, QVariant> &parameters) override;
0022 
0023 private:
0024     SolidDeviceEngine *m_engine;
0025     QString m_dest;
0026 };