2017-04-25 22:17:36 +02:00
|
|
|
#ifndef NOTIFICATIONS_HPP
|
|
|
|
#define NOTIFICATIONS_HPP
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QSystemTrayIcon>
|
|
|
|
|
2017-05-06 13:21:12 +02:00
|
|
|
namespace notifications {
|
2017-05-09 17:26:00 +02:00
|
|
|
void notify(QString title, QString body, QSystemTrayIcon::MessageIcon icon = QSystemTrayIcon::Information);
|
2017-04-25 22:17:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // NOTIFICATIONS_HPP
|