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