e61d69a840
It contains licensing information!
13 lines
378 B
C++
13 lines
378 B
C++
#ifndef NOTIFICATIONS_HPP
|
|
#define NOTIFICATIONS_HPP
|
|
|
|
#include <QString>
|
|
#include <QSystemTrayIcon>
|
|
|
|
namespace notifications {
|
|
void notify(QString title, QString body, QSystemTrayIcon::MessageIcon icon = QSystemTrayIcon::Information);
|
|
void notifyNolog(QString title, QString body, QSystemTrayIcon::MessageIcon icon = QSystemTrayIcon::Information);
|
|
}
|
|
|
|
#endif // NOTIFICATIONS_HPP
|