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
535 B
25 lines
535 B
/* |
|
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; |
|
};
|
|
|