mirror of
https://github.com/ysoftdevs/Testa.git
synced 2026-01-11 22:30:26 +01:00
18 lines
303 B
C++
18 lines
303 B
C++
#ifndef NOTIFICATION_H
|
|
#define NOTIFICATION_H
|
|
|
|
#include <QObject>
|
|
#include <string>
|
|
|
|
class Notification : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public slots:
|
|
static void show(const QString &title, const QString &message);
|
|
static void hide();
|
|
private:
|
|
Notification() { }
|
|
};
|
|
|
|
#endif // NOTIFICATION_H
|