KShare/notifications.hpp

13 lines
265 B
C++
Raw Normal View History

2017-04-25 22:17:36 +02:00
#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