13 lines
265 B
C++
13 lines
265 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);
|
||
|
}
|
||
|
|
||
|
#endif // NOTIFICATIONS_HPP
|