mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-12 02:05:54 +00:00
26 lines
535 B
C++
26 lines
535 B
C++
/*
|
|
SPDX-FileCopyrightText: 2008 Rob Scheepmaker <r.scheepmaker@student.utwente.nl>
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-only
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <Plasma/Service>
|
|
|
|
class NotificationsEngine;
|
|
|
|
class NotificationService : public Plasma::Service
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
NotificationService(NotificationsEngine *parent, const QString &source);
|
|
|
|
protected:
|
|
Plasma::ServiceJob *createJob(const QString &operation, QMap<QString, QVariant> ¶meters) override;
|
|
|
|
private:
|
|
NotificationsEngine *m_notificationEngine;
|
|
};
|