1/*
2 SPDX-FileCopyrightText: 2005-2006 Olivier Goffart <ogoffart at kde.org>
3
4 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
5*/
6
7#include "knotificationplugin.h"
8
9class KNotificationPluginPrivate
10{
11};
12
13KNotificationPlugin::KNotificationPlugin(QObject *parent, const QVariantList &args)
14 : QObject(parent)
15 , d(nullptr)
16{
17 Q_UNUSED(args);
18}
19
20KNotificationPlugin::~KNotificationPlugin()
21{
22}
23
24void KNotificationPlugin::update(KNotification *notification, const KNotifyConfig &notifyConfig)
25{
26 Q_UNUSED(notification);
27 Q_UNUSED(notifyConfig);
28}
29
30void KNotificationPlugin::close(KNotification *notification)
31{
32 Q_EMIT finished(notification);
33}
34
35void KNotificationPlugin::finish(KNotification *notification)
36{
37 Q_EMIT finished(notification);
38}
39
40#include "moc_knotificationplugin.cpp"
41

source code of knotifications/src/knotificationplugin.cpp