dusky
2025-07-25 3627f08c2ab1fd73bd3495eef14ee49c01a3226a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef NOTIFICATIONMANAGER_H
#define NOTIFICATIONMANAGER_H
 
#include <QMainWindow>
 
namespace Ui {
class notificationmanager;
}
 
class notificationmanager : public QMainWindow
{
    Q_OBJECT
 
public:
    explicit notificationmanager(QWidget *parent = 0);
    ~notificationmanager();
 
private:
    Ui::notificationmanager *ui;
};
 
#endif // NOTIFICATIONMANAGER_H