KShare/notifications.hpp
ArsenArsen e61d69a840 Move settings to a seperate dialog, add about box
It contains licensing information!
2017-06-22 17:41:29 +02:00

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