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.
 
 
 
 
 
 

25 lines
521 B

/*
SPDX-FileCopyrightText: 2014 Martin Gräßlin <[email protected]>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include <Plasma/Service>
class Klipper;
class ClipboardService : public Plasma::Service
{
Q_OBJECT
public:
ClipboardService(Klipper *klipper, const QString &uuid);
~ClipboardService() override = default;
protected:
Plasma::ServiceJob *createJob(const QString &operation, QVariantMap &parameters) override;
private:
Klipper *m_klipper;
QString m_uuid;
};