linphone-desktop/Linphone/core/notifier/AbstractNotificationBackend.cpp
2026-04-02 10:05:36 +02:00

10 lines
528 B
C++

#include "AbstractNotificationBackend.hpp"
DEFINE_ABSTRACT_OBJECT(AbstractNotificationBackend)
const QHash<int, AbstractNotificationBackend::Notification> AbstractNotificationBackend::Notifications = {
{AbstractNotificationBackend::ReceivedMessage, Notification(AbstractNotificationBackend::ReceivedMessage, 10)},
{AbstractNotificationBackend::ReceivedCall, Notification(AbstractNotificationBackend::ReceivedCall, 30)}};
AbstractNotificationBackend::AbstractNotificationBackend(QObject *parent) : QObject(parent) {
}