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 | |
9 | class KNotificationPluginPrivate |
10 | { |
11 | }; |
12 | |
13 | KNotificationPlugin::KNotificationPlugin(QObject *parent, const QVariantList &args) |
14 | : QObject(parent) |
15 | , d(nullptr) |
16 | { |
17 | Q_UNUSED(args); |
18 | } |
19 | |
20 | KNotificationPlugin::~KNotificationPlugin() |
21 | { |
22 | } |
23 | |
24 | void KNotificationPlugin::update(KNotification *notification, const KNotifyConfig ¬ifyConfig) |
25 | { |
26 | Q_UNUSED(notification); |
27 | Q_UNUSED(notifyConfig); |
28 | } |
29 | |
30 | void KNotificationPlugin::close(KNotification *notification) |
31 | { |
32 | Q_EMIT finished(notification); |
33 | } |
34 | |
35 | void KNotificationPlugin::finish(KNotification *notification) |
36 | { |
37 | Q_EMIT finished(notification); |
38 | } |
39 | |
40 | #include "moc_knotificationplugin.cpp" |
41 |