mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-17 20:08:28 +00:00
10 lines
528 B
C++
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) {
|
|
}
|