File: kupservice.h

package info (click to toggle)
kup-backup 0.10.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,576 kB
  • sloc: cpp: 8,422; xml: 311; makefile: 6; sh: 3
file content (46 lines) | stat: -rw-r--r-- 1,088 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// SPDX-FileCopyrightText: 2020 Simon Persson <simon.persson@mykolab.com>
//
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL

#ifndef KUPSERVICE_H
#define KUPSERVICE_H

#include <QtGlobal>

#if QT_VERSION_MAJOR == 5
#include <Plasma/Service>
#include <Plasma/ServiceJob>
#else
#include <Plasma5Support/Service>
#include <Plasma5Support/ServiceJob>
namespace Plasma = Plasma5Support;
#endif

class QLocalSocket;

class KupService : public Plasma::Service
{
    Q_OBJECT

public:
    KupService(int pPlanNumber, QLocalSocket *pSocket, QObject *pParent = nullptr);
    Plasma::ServiceJob *createJob(const QString &pOperation, QMap<QString, QVariant> &pParameters) override;

protected:
    QLocalSocket *mSocket;
    int mPlanNumber;
};

class KupDaemonService : public Plasma::Service
{
    Q_OBJECT

public:
    explicit KupDaemonService(QLocalSocket *pSocket, QObject *pParent = nullptr);
    Plasma::ServiceJob *createJob(const QString &pOperation, QMap<QString, QVariant> &pParameters) override;

protected:
    QLocalSocket *mSocket;
};

#endif // KUPSERVICE_H