mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-30 02:09:18 +00:00
20 lines
456 B
C++
20 lines
456 B
C++
#include <QtDebug>
|
|
|
|
#include "NotificationModel.hpp"
|
|
|
|
// ===================================================================
|
|
|
|
NotificationModel::NotificationModel (QObject *parent) :
|
|
QObject(parent) {
|
|
}
|
|
|
|
void NotificationModel::showMessage (
|
|
const QString &summary,
|
|
const QString &body,
|
|
const QString &icon,
|
|
int timeout
|
|
) {
|
|
qDebug() <<
|
|
"Notification.showMessage(" << summary << ", " <<
|
|
body << ", " << icon << ", " << timeout << ")";
|
|
}
|