File indexing completed on 2024-04-14 03:54:12

0001 /*
0002     SPDX-FileCopyrightText: 2005-2006 Olivier Goffart <ogoffart at kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #include "knotificationplugin.h"
0008 
0009 class KNotificationPluginPrivate
0010 {
0011 };
0012 
0013 KNotificationPlugin::KNotificationPlugin(QObject *parent, const QVariantList &args)
0014     : QObject(parent)
0015     , d(nullptr)
0016 {
0017     Q_UNUSED(args);
0018 }
0019 
0020 KNotificationPlugin::~KNotificationPlugin()
0021 {
0022 }
0023 
0024 void KNotificationPlugin::update(KNotification *notification, const KNotifyConfig &notifyConfig)
0025 {
0026     Q_UNUSED(notification);
0027     Q_UNUSED(notifyConfig);
0028 }
0029 
0030 void KNotificationPlugin::close(KNotification *notification)
0031 {
0032     Q_EMIT finished(notification);
0033 }
0034 
0035 void KNotificationPlugin::finish(KNotification *notification)
0036 {
0037     Q_EMIT finished(notification);
0038 }
0039 
0040 #include "moc_knotificationplugin.cpp"