/* SPDX-FileCopyrightText: 2008 Rob Scheepmaker SPDX-License-Identifier: LGPL-2.0-only */ #pragma once #include class NotificationsEngine; class NotificationService : public Plasma5Support::Service { Q_OBJECT public: NotificationService(NotificationsEngine *parent, const QString &source); protected: Plasma5Support::ServiceJob *createJob(const QString &operation, QMap ¶meters) override; private: NotificationsEngine *m_notificationEngine; };